diff --git a/Programs/Calendar.py b/Programs/Calendar.py new file mode 100644 index 0000000..e1b2535 --- /dev/null +++ b/Programs/Calendar.py @@ -0,0 +1,7 @@ +import calendar +# Enter the year +yy = int(input("Enter year: ")) +# Enter the month +mm = int(input("Enter month: ")) +# display the calendar +print(calendar.month(yy,mm))