“Comment faire une question oui ou non dans Python” Réponses codées

Posez une question sur Python

Question = input("your question")
if Question == ("yes")
	print ("well done")
elif Question == ("no")
	print ("try again")
Long Lion

Comment poser une question oui ou non sur Python

answer = input("Enter yes or no: ") 
if answer == "yes": 
    # Do this. 
elif answer == "no": 
    # Do that. 
else: 
    print("Please enter yes or no.") 
Juji_Wuji

Comment faire une question oui ou non dans Python

def question():
    i = 0
    while i < 2:
        answer = input("Question? (yes or no)")
        if any(answer.lower() == f for f in ["yes", 'y', '1', 'ye']):
            print("Yes")
            break
        elif any(answer.lower() == f for f in ['no', 'n', '0']):
            print("No")
            break
        else:
            i += 1
            if i < 2:
                print('Please enter yes or no')
            else:
                print("Nothing done")


question()
Joe Stables

Réponses similaires à “Comment faire une question oui ou non dans Python”

Questions similaires à “Comment faire une question oui ou non dans Python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code