Would anyone please help me find out why I get an indentation error in line 3
def calc(f1,f2,f3):remove_list = ['01ST', '02ND', '03RD', '04TH', '05TH', '06TH', '07TH', '08TH', '09TH'] if f2 in remove_list: f2 = f2.replace('0','') else: f2 = f2f1 = f1.strip()f2 = f2.strip()f3...