From cf0ee2782abcc2dc8b9bfb54814271298f7ad168 Mon Sep 17 00:00:00 2001 From: sharan Date: Sun, 3 Oct 2021 01:59:18 +0530 Subject: [PATCH] updte --- Python/Program34/Program34.py | 7 +++++++ Python/Program34/Readme.md | 1 + 2 files changed, 8 insertions(+) create mode 100644 Python/Program34/Program34.py create mode 100644 Python/Program34/Readme.md diff --git a/Python/Program34/Program34.py b/Python/Program34/Program34.py new file mode 100644 index 00000000..2bbdaa28 --- /dev/null +++ b/Python/Program34/Program34.py @@ -0,0 +1,7 @@ +# First import the calendar module +import calendar + # ask of month and year +yy = int(input("Enter year: ")) +mm = int(input("Enter month: ")) +# display the calendar +print(calendar.month(yy,mm)) \ No newline at end of file diff --git a/Python/Program34/Readme.md b/Python/Program34/Readme.md new file mode 100644 index 00000000..940e13b3 --- /dev/null +++ b/Python/Program34/Readme.md @@ -0,0 +1 @@ +Program to display calender \ No newline at end of file