Answers for "how to do an if input = python"

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
1

how to get a user input in python

a = input("what is your input")
Posted by: Guest on July-09-2020

Code answers related to "how to do an if input = python"

Python Answers by Framework

Browse Popular Code Answers by Language