+ 1
why this doesn't work? 😐
3 Respostas
+ 5
import calendar
for i in range(1,13):
print(calender.month(2021,i))
Snall spelling mistake
Use a instead of e
+ 2
Typo in calendar.
Give indentation.
import calendar
for i in range(1,13):
print(calendar.month(2021,i))
+ 1
There is no module with name calender
Also you have given no indentation after for loop