Python Program to Check Leap Year || Python Programming Examples

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

year = int(input("Enter the Year: "))

Leap_check = bool(year%4)

if Leap_check == True:
print("This is not a Leapyear")
else:
print("This is a Leapyear")

inbanpythonic