请问,为什么运行不起来?
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 +' 不是闰年! ")
我修改了一下引号成对,但是还是运行不起来
单引号和双引号不能混用
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 +' 不是闰年! ')
我可以运行呀,是不是你改引号没注意中英文 {:10_243:}看到一个中文引号
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:36
单引号和双引号不能混用
谢谢,我找到问题所在了,我的第九行引号有一个中文字符!谢谢各位! 谢谢,我找到问题所在了,我的第九行引号有一个中文字符!谢谢各位!
页:
[1]