小甲鱼零基础入门学习Python-005 判断闰年
temp = input("请输入年份:")whiletemp != 'quit' :
if temp.isdigit() == True:
year = int(temp)
if (year % 4 == 0 and year % 100 !=0) or year % 400 == 0 :
print(year,end='')
print("是闰年")
temp = input("再玩一次,请输入年份:")
else:
print(year,end='')
print("不是闰年")
temp = input("再玩一次,请输入年份:")
else:
print("输入格式不正确")
temp = input("再玩一次,请输入年份:")
if temp == 'quit':
print('退出')
{:10_256:} 握手,同努力
页:
[1]