python學習-判斷閏年指令碼

fei890910發表於2016-06-29
temp = input('請輸入一個年份:')
while not temp.isdigit():
    temp = input('抱歉輸入有誤,請從新輸入:')    
year = int(temp)
if year%400 == 0:
    print(temp + ' 是閏年啊')
else:
    if (year/4 == int(year/4) and (year/100 != int(year/100))):
        print(temp + ' 是閏年啊')
    else:
        print(temp + ' 不是閏年啊')
    

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29108064/viewspace-2121220/,如需轉載,請註明出處,否則將追究法律責任。

相關文章