Answers for "python user input with if statement"

0

how to do an if input = python

start_over = 1

question = input("Do you wish to try again? y/n: ")
if question == "y":
    start_over -= 1
else:
    raise SystemExit
Posted by: Guest on August-24-2020

Code answers related to "python user input with if statement"

Python Answers by Framework

Browse Popular Code Answers by Language