Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make a multichoice in python

while True:
    1 = input("1=: 
 A)  B) [A/B]? : ")
    if 1 == "A":
        print("A")
    elif 1 == "B":
        print("B")
		else:
        	print("Done!")
        break
 
PREVIOUS NEXT
Tagged: #multichoice #python
ADD COMMENT
Topic
Name
7+9 =