Fonctions Tests
== (et surtout pas =)
!=
< > <= >=
in
if condition : (4 esp) instructions1 (4 esp) instructions2 else: (4 esp) instructions3 (4 esp) instructions4 instructions5
Exo : Faire un test pour vérifier si un nombre
est compris entre 5 et 10
Astuce pour nano : ~/.nanorc
set tabsize 4
set tabstospaces
if (condition) and (condition):
(4 esp) instructions
if (condition) or (condition):
(4 esp) instructions
if not condition:
(4 esp) instructions
for i in liste: (4 esp) instructions1 (4 esp) instructions2 for i in range(5): (4 esp) instructions3 instructions4 for mot in phrase: (4esp) instructions6
while condition: instructions1 instructions2 # quand condition est faux instructions3
while condition1 : if condition2 : break # casse le while instructions
while condition1 : if condition2 : continue # retourne au while instructions
#!/usr/bin/env python3 import random nbaleat = random.randint (0, 20) # Identifier le nombre tiré aléatoirement
#!/usr/bin/env python3 liste = [8, 4, 6, 1, 5, 4, 9]
# Déterminer le min d'une liste
# Déterminer le max d'une liste
Vérifier la conjecture de Syracuse pour n aleatoire < 100
si n pair -> n / 2
si n impair -> n*3 +1
jusqu'à 1 puis cycle trivial de 3 nombres