摘要: 5.1 5.2 5.3 5.4 def PrimeList(N): result = [] for num in range(2, N): if isPrime(num): result.append(num) return " ".join(map(str, result)) 5.5 def is 阅读全文
posted @ 2025-04-20 22:23 荔枝Y 阅读(8) 评论(0) 推荐(0)