Tuesday, December 28, 2021

Leap Year in Python in Linux

 A program that I will ask the user to give a year and then the program will check if the given year is a leap year or not using Python programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

 




 

Program Listing

# leap_year.py
# Leap Year in Python in Linux
# Jake Rodriguez Pomperada, MAED-IT, MIT
# www.jakerpomperada.com and www.jakerpomperada.blogspot.com
# Globe Number : 09173084360
# Bacolod City, Negros Occidental Philippines.

print("\n")
print("\tLeap Year in Python in Linux")
print("\n")
year = int(input("\tEnter the Year : "))


# Checking if the given year if a Leap Year or Not

print("\n")

if (year%400 == 0):
          print("\tThe given year %d is a Leap Year." %year)
elif (year%100 == 0):
          print("\tThe given year %d is Not the Leap Year." %year)
elif (year%4 == 0):
          print("\tThe given year %d is a Leap Year." %year)
else:
          print("\tThe given year %d is Not the Leap Year." %year)

print("\n")
print("\tEnd of Program")
print("\n")
 



No comments:

Post a Comment