2 Program to check year is Leap Year or not in Python Atharva Satyendra Agrawal January 17, 2020 Atharva Satyendra Agrawal Program: num = int(input("Enter any year:")) if num % 4 == 0: print(num ,"Year is Leap Year") else: print(num ,"Year is Not a Leap Year") Output: Tweet Share Share Share Related Post