輸出100之內的全部素數,素數之間以一個空格區分

a = [s for s in range(3,101)[::2] if not [y for y in range(2,s) if s%y == 0]]
print a

利用if not 判斷其因子集合是否是空python

素數的因子集合爲空code

條件句式  (if not 空List)  判斷結果爲True,於是該數就是素數。class

相關文章
相關標籤/搜索