HTML (use for any code rander on web page)
<pre>
It is simple in python programming to display calendar. To do so, you need to import the calendar module which comes with Python.
import calendar
And then apply the syntax
(calendar.month(yy,mm))
See this example:
import calendar
# Enter the month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))
# display the calendar
print(calendar.month(yy,mm))
</pre>
Comments
Post a Comment