Answers for "how to show a number in form of year and month in python"

1

how to get the year and month in python

import calander
ear = int(input("Input the year:- "))
Month = int(input("Input the month:- "))
print(calendar.month(y, m))
Posted by: Guest on July-27-2021

Code answers related to "how to show a number in form of year and month in python"

Python Answers by Framework

Browse Popular Code Answers by Language