编写一个python程序,它将找到所有这些数字,可被7整除,但不是5的倍数,2000年至3200年(包括在内)。得到的数字应按逗号分隔的顺序打印在一行上。
时间: 2023-03-16 13:44:37 浏览: 487
用c语言实现2000内既能被3整除又能被7整除的个数
可以使用以下程序:# Python program to print all numbers that are divisible by 7
# but are not multiple of 5, between 2000 and 3200 (both included)lst = []
for x in range(2000, 3201):
if (x%7==0) and (x%5!=0):
lst.append(str(x))print(','.join(lst))
阅读全文