You are given the following information, but you may prefer to do some research for yourself.
How many Sundays fell on the first of the month during the twentieth century (1 Jan 1901 to 31 Dec 2000)?
import datetime
def p19(firstyear=1901, lastyear=2000):
res = 0
for year in range(firstyear, lastyear + 1):
for month in range(1, 13):
if datetime.date(year, month, 1).weekday() == 6:
res += 1
return res