2021年12月29日
摘要: def num_a(a): if isinstance(a,int) and a > 1: lst =[] for i in range(2,a): for j in range(2,i): if i%j == 0: break else: lst.extend(num_b(a,i)) return 阅读全文
posted @ 2021-12-29 00:08 Wgl123 阅读(40) 评论(0) 推荐(0) 编辑