Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- '''
- Enter only Year
- _________________
- '''
- from calendar import*
- year=int(input("Enter Year:- "))
- print(calendar(year,3,2,8,1))
- '''
- EXPLAIN
- 2 = 2 characters for days(Mon, Tue, etc)
- 2 = 2 line(row) for each week
- 8 = 8 rows for each month
- 1 = 1 columns for all month of the Year
- '''
- print("*Happy Coding*".center(65))
Advertisement
Add Comment
Please, Sign In to add comment