列表解析 最简单解释

a=[]
for i in range(101):
    if i%2==0:
        a.append(i)

用列表解析来做就是这样的:

a=[x for x in range(101) if x%2==0]

你可能感兴趣的:(列表解析 最简单解释)