Python代码

站长能帮我用Python编写一个程序吗,它将找到所有这些数字,可被7整除,但不是5的倍数,2000年至3200年(包括在内)。得到的数字应按逗号分隔的顺序打印在一行上。

共以下 4 个回答

  • 刘, 大大 普通 2023年8月28日 下午3:35

    l=[]
    for i in range(2000, 3201):
    if (i%7==0) and (i%5!=0):
    l.append(str(i))
    print (‘,’.join(l))

    0 赞同 1 条回复
  • rongda 永久会员 2023年8月28日 下午3:36

    l=[]
    for i in range(2000, 3201):
    if (i%7==0) and (i%5!=0):
    l.append(str(i))
    print (‘,’.join(l))

    0 赞同 1 条回复
  • porn siteleri 2023年12月30日 上午12:50

    yandanxvurulmus.iW2AajMr5L8f

    0 赞同 0 条回复
  • how to tell if someone is on shrooms 2024年3月10日 上午3:39

    I’m really enjoying the theme/design of your site.

    Do you ever run into any internet browser compatibility problems?
    A few of my blog audience have complained
    about my site not operating correctly in Explorer but looks great in Safari.
    Do you have any suggestions to help fix this problem?

    0 赞同 1 条回复

# 回答此问题

您的电子邮箱地址不会被公开。 必填项已用*标注