import holidays
from datetime import date
Inholidays = sorted(holidays.CountryHoliday('IN',years=2020).items())
for x,y in Inholidays:
print(x,y)