1. 程式人生 > >python判斷閏年

python判斷閏年

Python 的 calendar 庫中封裝好了一個方法 isleap() 來實現判斷是否為閏年:

>>> import calendar
>>> print(calendar.isleap(2000))
True
>>> print(calendar.isleap(1900))
False

根據使用者輸入判斷:

import calendar

year = int(input("請輸入年份:"))
check_year=calendar.isleap(year)
if check_year == True:
    print ("閏年")
else:
    print ("平年")