python输出质数并每行10个
时间: 2023-07-26 16:46:33 浏览: 86
好的,我可以帮您编写一个python程序来输出质数并每行10个。以下是代码:
```python
def is_prime(n):
if n < 2:
return False
for i in range(2, int(n ** 0.5) + 1):
if n % i == 0:
return False
return True
count = 0
for num in range(2, 100):
if is_prime(num):
if count == 10:
print()
count = 0
print(num, end=' ')
count += 1
```
这个程序会输出2到100之间的所有质数,并且每行输出10个。如果需要输出其他范围内的质数,只需要修改程序中的`range`函数的参数即可。
相关问题
python输出300到800的素数并每行5个输出
Sure, I can do that for you. Here is the code:
```python
def is_prime(num):
if num < 2:
return False
for i in range(2, int(num**0.5)+1):
if num % i == 0:
return False
return True
count = 0
for num in range(300, 801):
if is_prime(num):
print(num, end="\t")
count += 1
if count % 5 == 0:
print()
```
Hope it helps!
Python输出100以内素数,每行输出5个
好的,以下是Python代码实现:
```python
def is_prime(n):
"""
判断一个数是否为素数
"""
if n < 2:
return False
for i in range(2, int(n ** 0.5) + 1):
if n % i == 0:
return False
return True
count = 0
for i in range(2, 101):
if is_prime(i):
print(i, end=' ')
count += 1
if count % 5 == 0:
print()
```
输出结果如下:
```
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
```
阅读全文