Différences entre les versions de « Utilisatrice:Anna Pastor »
Aller à la navigation
Aller à la recherche
Ligne 1 : | Ligne 1 : | ||
− | == | + | == Code tout facile sur python == |
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> |
Version du 11 octobre 2021 à 10:05
Code tout facile sur python
<syntaxhighlight lang="python">
- -*- coding: utf8 -*-
print ("quel temps (en C°) il fait aujourd'hui ?") temps = input() temps = int(temps)
if temps > 30:
print("Il fait chaud mdr")
elif temps > 20:
print("Il fait beau mdr")
elif temps > 10:
print ("Il fait froid mdr")
else:
print ("brrrr")