无帅纪 发表于 2019-7-3 18:07:57

运行循环问题

请教一下 Python中怎么重复运行代码
比如说 print("这是个什么年份")
temp = input("试试吧:")
while not temp.isdigit():
    temp = input("整数")
a = int(temp)
if a % 4 == 0:
    print(temp + "闰年")
else:
    print(temp + "平年")
怎么运行完成后可以重新运行

newu 发表于 2019-7-3 18:52:47


temp = input("试试吧(按q退出):")
while temp != 'q':
    while not temp.isdigit():
      temp = input("整数")
    a = int(temp)
    if a % 4 == 0:
      print(temp + "闰年")
    else:
      print(temp + "平年")
    temp = input("试试吧(按q退出):")

无帅纪 发表于 2019-7-3 23:00:25

谢谢指导
页: [1]
查看完整版本: 运行循环问题