Python 如何输出指定范围内的素数

转载自品略图书馆 http://www.pinlue.com/article/2020/06/0401/4710677189434.html

 

Python3 实例

素数(prime number)又称质数,有无限个。除了1和它本身以外不再被其他的除数整除。

以下实例可以输出指定范围内的素数:

#!/usr/bin/python3# 输出指定范围内的素数# take input from the userlower = int(input("输入区间最小值: "))upper = int(input("输入区间最大值: "))for num in range(lower,upper + 1): # 素数大于 1 if num > 1: for i in range(2,num): if (num % i) == 0: break else: print(num)

执行以上程序,输出结果为:

$ python3 test.py 输入区间最小值: 1输入区间最大值: 1002357111317192329313741434753596167717379838997

你可能感兴趣的:(Python)