1. 程式人生 > >Python迴圈 if and for a more write

Python迴圈 if and for a more write

x =[1,2,3,4,5]
y =[6,7,8,9,10]
q = [a + b for a in x for b in y if a%2 == 0 and b%2 == 0]
#迴圈 x , y 列表 ,對列表內的數值取於,是偶數相加
#a +b 是運算  for a in x 迴圈 x 列表  for b in y 迴圈 y 列表 if a%2 == 0 and b%2 == 0 對 x,y
#列表的取於,a%2 and b%2 只是取於方式
print(q)
w =[ a for a in x if a%2 == 0 ]
#迴圈列表 x ,取於輸出偶數
print(w)