|
|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
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 + ' 不是闰年!')
File "<ipython-input-22-3502f516a01a>", line 3
temp = input("抱歉,您的输入有误,请输入一个整数:")
^
IndentationError: expected an indented block
我自己先写了程序,运行不起来,把老师答案中的复制黏贴还是运行不起来。请问一下为什么。
楼主的代码不够简练,我给简化一下:
- prompt = '请输入一个年份:'
- while True :
- temp = input(prompt)
- if temp . isdigit():
- break
- prompt = '抱歉,您的输入有误,请输入一个整数:'
- year = int(temp)
- if (year % 4 == 0) and (year % 100 != 0 or year % 400 == 0):
- print(temp + ' 是闰年!')
- else:
- print(temp + ' 不是闰年!')
复制代码
|
|