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