ahua919191 发表于 2021-7-19 13:24:56

请问,为什么运行不起来?

temp =input('请输入一个年份: ')
while not temp.isdigit():
    temp = input("抱歉,您的输入有误,请输入一个整数:")
year = int(temp)
if year/400 == int(year/400):
    print(temp+ '   是闰年!")
else:
    if(year/4 == int(year/4)) and (year/100 != int(year/100)):
            print(temp + '是闰年! ”)
    else:
          print(temp +'   不是闰年! ")

ahua919191 发表于 2021-7-19 13:27:25

我修改了一下引号成对,但是还是运行不起来

逃兵 发表于 2021-7-19 13:36:23

单引号和双引号不能混用

temp =input('请输入一个年份: ')
while not temp.isdigit():
    temp = input("抱歉,您的输入有误,请输入一个整数:")
year = int(temp)
if year/400 == int(year/400):
    print(temp+ "   是闰年!")
else:
    if(year/4 == int(year/4)) and (year/100 != int(year/100)):
            print(temp + '是闰年! ')
    else:
          print(temp +'   不是闰年! ')

灰晨 发表于 2021-7-19 13:38:46

我可以运行呀,是不是你改引号没注意中英文

古明地·恋 发表于 2021-7-19 13:39:32

{:10_243:}看到一个中文引号

名字只有七个字 发表于 2021-7-19 14:44:00


temp =input("请输入一个年份:")
while not temp.isdigit():
    temp = input("抱歉,您的输入有误,请输入一个整数:")
year = int(temp)
if year/400 == int(year/400):
    print(temp+ "是闰年!")
else:
    if(year/4 == int(year/4)) and (year/100 != int(year/100)):
            print(temp + "是闰年!")
    else:
          print(temp + "不是闰年!")

ahua919191 发表于 2021-7-19 16:08:51

逃兵 发表于 2021-7-19 13:36
单引号和双引号不能混用

谢谢,我找到问题所在了,我的第九行引号有一个中文字符!谢谢各位!

ahua919191 发表于 2021-7-19 16:10:56

谢谢,我找到问题所在了,我的第九行引号有一个中文字符!谢谢各位!
页: [1]
查看完整版本: 请问,为什么运行不起来?