Python小代码_6_列表推导式求 100 以内的所有素数

import math
a = [p for p in range(2, 100) if 0 not in [p % d for d in range(2, int(math.sqrt(p)) + 1)]]
print(a)

#输出结果
#[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]

 

posted @ 2018-02-22 20:45  守护窗明守护爱  阅读(2211)  评论(0编辑  收藏  举报