1. 程式人生 > >Python學習之路——基礎04篇

Python學習之路——基礎04篇

usr pre Coding color 偶數求和 存在 代碼 spa nbsp

  在python中,有很強大的for循環和很強大的數組操作,一些在其他語言中復雜的代碼,在python中可以一行解決,下面是python中解決a,b數組所有偶數求和,存在c數組中的簡單代碼。

#!/usr/bin/env python3.6
#-*- coding: -utf8- -*-
x=[1,2,3,4]
y=[4,5,6,7]
c=[a + b for a in x for b in y if a%2 == 0 and b%2 ==0]
print(c)

Python學習之路——基礎04篇