{{backlinks>.}} ====== Conditionnelle ====== * Conditonnelle **[[http://www.frederic-junier.org/PythonSeconde/Python_Seconde_Parc/if/if.html|if]]** i = 5 if i == 5: print("i est égale à 5") elif i > 5: print("i est strictement supérieur à 5") else: print("i est strictement inférieur à 5")