Différences entre les versions de « Utilisateur:Mathus »
Aller à la navigation
Aller à la recherche
Ligne 1 : | Ligne 1 : | ||
<syntaxhighlight lang = python > | <syntaxhighlight lang = python > | ||
− | pates = ["Spaghetti ", "Penne", "tortellini", "Farfalle", "Fusilli", "Ravioles"] | + | pates = ["Spaghetti", "Penne", "tortellini", "Farfalle", "Fusilli", "Ravioles"] |
print("Aime tu les pates ?") | print("Aime tu les pates ?") | ||
Ligne 11 : | Ligne 11 : | ||
if reponse == "non": | if reponse == "non": | ||
− | + | print("Dans ce cas on à rien a se dire") | |
− | + | ||
− | elif reponse == "oui": | + | elif reponse == "oui" : |
print("très bien mais il y a beaucoup de pates differentes") | print("très bien mais il y a beaucoup de pates differentes") | ||
print("quels sont tes pates préféres ?") | print("quels sont tes pates préféres ?") | ||
reponse2 = input(pates) | reponse2 = input(pates) | ||
+ | |||
+ | while i<5 : | ||
if reponse2 == pates[1]: | if reponse2 == pates[1]: | ||
− | print("tu me | + | print("tu me degoute") |
− | + | ||
+ | else : | ||
print("bien") | print("bien") | ||
− | + | reponse2 = input(pates) | |
i+1 | i+1 | ||
− | + | if i == 5: | |
− | print(" | + | print("ca fait beaucoup de pates") |
− | |||
− | |||
</syntaxhighlight lang = python > | </syntaxhighlight lang = python > |
Version du 25 octobre 2021 à 08:05
<syntaxhighlight lang = python >
pates = ["Spaghetti", "Penne", "tortellini", "Farfalle", "Fusilli", "Ravioles"]
print("Aime tu les pates ?")
reponse = input()
i =0
if reponse == "non":
print("Dans ce cas on à rien a se dire")
elif reponse == "oui" :
print("très bien mais il y a beaucoup de pates differentes") print("quels sont tes pates préféres ?") reponse2 = input(pates)
while i<5 :
if reponse2 == pates[1]: print("tu me degoute") else : print("bien") reponse2 = input(pates) i+1 if i == 5: print("ca fait beaucoup de pates")
</syntaxhighlight lang = python >