关于python课后作业 写一个判断闰年
year = input('请输入一个年份:')while not year.isdigit():
year = input("抱歉,您的输入有误,请输入一个整数:")
year=int(year)
if year/400==int(year/400):
print(year+'是闰年')
else:
if year/4==int(year/4)and (year/100!=int(year/100)):
print(year+"是闰年")
else:
print(year+"不是闰年")
这是我写的代码 然后我输入一个年份会出现这个错误:
Traceback (most recent call last):
File "C:\Users\zjm16\Desktop\python\leep_year.py", line 11, in <module>
print(year+"是闰年")
TypeError: unsupported operand type(s) for +: 'int' and 'str'
求解答 你转换成int类型了输出的时候和字符串拼接得转成str lirenbing01 发表于 2020-9-21 14:56
你转换成int类型了输出的时候和字符串拼接得转成str
year = input('请输入一个年份:')
while not year.isdigit():
year = input("抱歉,您的输入有误,请输入一个整数:")
year=int(year)
if year/400==int(year/400):
print(str(year)+'是闰年')
else:
if year/4==int(year/4)and (year/100!=int(year/100)):
print(str(year)+"是闰年")
else:
print(str(year)+"不是闰年")
我这样改就正确了
学习了。谢谢
页:
[1]