''' DS2000 Spring 2020 Source code from class - I drink and I know things ''' def is_finale(season, ep): ''' Function: finale Parameters: season #, ep # (ints) Returns: boolean,indicating if we're wtaching the finale right now ''' finale = False if season <= 6 and ep == 10: finale = True elif season == 7 and ep == 7: finale = True elif season == 8 and ep == 6: finale = True return finale