0
I need result of date one to thirty
2 Respuestas
+ 4
You can make it by importing calendar module.
+ 4
For example if you want to print calendar of 2023 then you should write your code as:
import calendar
for i in range(1,12+1):
print (calendar.month(2023,i,4))