comment faire un multichoice en python
while True:
1 = input("1=: \n A) B) [A/B]? : ")
if 1 == "A":
print("A")
elif 1 == "B":
print("B")
else:
print("Done!")
break
Beautiful Batfish