''' DS2000 Spring 2020 Driver for GoT - prompt the user UNTIL they're watching a season finale, at which point they can go to bed. Translation from English into Python: Prompt UNTIL you're watching the finale ====> WHILE you're not watching the season finale, prompt you. V2 -- got rid of repeated code from V1. Once we're outside the loop, the condition must be false. Everything before the word "but" is horseshit. ''' from got import is_finale def main(): season = 1 ep = 1 while not is_finale(season, ep): print("There's more GoT to watch!") season = int(input("Which season are you watching?\n")) ep = int(input("Which episode are you watching?\n")) print("That's it, the season is over, go to bed!") main()