Skip to content

Commit

Permalink
Full Calendar of given year
Browse files Browse the repository at this point in the history
  • Loading branch information
sagar2002malik authored Oct 4, 2021
1 parent 527b2da commit 1a1ed11
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Python/sagar2002malik_Calendar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import calendar

# Prints the full calendar of the given year
y = int(input("Input the year : "))
print(calendar.calendar(y))

0 comments on commit 1a1ed11

Please sign in to comment.