asking the user for input until they give a valid response in python December 23, 2020 Get link Facebook X Pinterest Email Other Apps asking the user for input until they give a valid response in pythonwhile True: try: n = input() print(n) except: break Comments
Comments
Post a Comment