File size: 132 Bytes
fd62121
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import calendar
import datetime

today = datetime.date.today()

year = today.year

print(year)

print(list(calendar.month_name[1:]))