#4r: Codding in Python {DAY FINDER}
#Note: Logic for this code was from my Mental Ability classes in my coaching center. for j in range(1): print('Only for 4-digit year') date=int(input('Enter date: ')) month=str(input('Enter full name of month in CAPS ON: ')) year=int(input('Enter 4-digit year: ')) k=[] if date<=31: if month=='JANUARY' or month=='FEBRUARY' or month=='MARCH' or month=='APRIL' or month=='MAY' or month=='JUNE' or month=='JULY' or month=='AUGUST' or month=='SEPTEMBER' or month=='OCTOBER' or month=='NOVEMBER' or month=='DECEMBER': aa=year for i in range(0,aa+1,4): k.append(i) for t in (k): if t%100==0 and t%400!=0: ...