有使用循环生成列表太麻烦,可以用列表生成式,只用一行语句生成列表。[x*x for x in range(4)]>>>[0, 1, 4, 9]
for后面还可加上if语句,
>>>L = ['Hello', 'World', 18, 'Apple', None]
>>> a = [i for i in L if isinstance(i,str)]
>>> a
['Hello', 'World', 'Apple']
isinstance()是python内建函数,可以判断一个变量的类型。
>>> isinstance('hello',str)
True
>>> isinstance(123,str)
False
>>> isinstance(123,int)
True
>>>d = {'name':'lee','gender':'male','age':21}
>>> isinstance(d,dict)
True
列表生成式可以同时使用两种变量甚至更多:
>>> d = {'gender': 'male', 'name': 'lee'}
>>> [k + '=' + v for k,v in d.items()]
['gender=male', 'name=lee']
还可以使用两种循环,生成全排列。
>>> [m + n for m in 'ABC' for n in 'XYZ']
['AX', 'AY', 'AZ', 'BX', 'BY', 'BZ', 'CX', 'CY', 'CZ']