python3 for和if一行写法

python3 for和if一行写法

d = [x for x in range(10) if x > 3]
print(d)

你可能感兴趣的:(for,if,python)