算自己写的第二个小程序了吧

print('----------此为闰年判断小程序----------')
temp = input('请输入一个年份:')
while not temp.isdigit():
    temp = input('抱歉请输入正确的年份格式,例如:1994')
guess = int(temp)
if guess % 100 != 0 and guess % 4 == 0 or guess % 100 == 0 and guess % 400 == 0:
    print(temp + '年为闰年')
else:
    print(temp + '年不是闰年')
print('谢谢使用')

一开始打了几个中文标点,导致程序一直报错。新手多犯点错误好

python今年多少天闰年 python闰年程序_git


人总是会在自我肯定与自我否定中成长么?--------------2019/8/21