The best Python primes output within the specified range Tutorial In 2024, In this tutorial you can learn Python primes output within the specified range

Python primes output within the specified range

Document Object Reference Examples Python3

Primes (prime number), also known prime number, there are an infinite number. Except 1 and itself is no longer other divisor divisible.

The following examples can be output prime numbers within a specified range:

#!/usr/bin/python3

# 输出指定范围内的素数

# take input from the user
lower = 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)

The above program, the output is:

$ python3 test.py 
输入区间最小值: 1
输入区间最大值: 100
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

Document Object Reference Examples Python3

Python primes output within the specified range
10/30