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