How to have user true/false input in python?

前端 未结 7 520
野的像风
野的像风 2021-01-19 11:00

I\'m new to python.

I want the program to ask

\"is Johnny hungry? True or false?\"

user inputs True then print is

7条回答
  •  一整个雨季
    2021-01-19 11:40

    def get_bool(prompt):
    while True:
        try:
            return {"si": True, "no": False}[input(prompt).lower()]
        except KeyError:
            print ("Invalido ingresa por favor si o no!")
    
        respuesta = get_bool("Quieres correr este programa: si o no")
    
    if (respuesta == True):
        x = 0
    else:
        x = 2
    

提交回复
热议问题