diff --git a/Python/print_calender.py b/Python/print_calender.py new file mode 100644 index 0000000..9549f45 --- /dev/null +++ b/Python/print_calender.py @@ -0,0 +1,8 @@ +# Write a python program to print the calender of a given mont and year + +import calendar + + +y = int(input("Input the year:")) +m = int(input("Input the month:")) +print(calendar.month(y,m))