1 instruction | taper l'instruction pour voir son effet immédiat. |
plusieurs instructions |
• créer un nouveau fichier (menu File → New File)
• écrire les instructions à tester, • appuyer sur la touche [F5] pour sauver et exécuter. |
# calcul des cubes de 1 à 10 for n in range(11) : print(n**3, end=' ') → 0 1 8 27 64 125 216 343 512 729 1000Instructions pour manipuler les fichiers :
# écriture (write) de "bonjour" dans le fichier "toto" pf = open("toto","w") pf.write("bonjour") pf.close() # lecture (read) de "bonjour" dans le fichier "toto" pf = open("toto","r") x = pf.read() pf.close() # impression de ce qui a été lu print(x) → bonjourPour obtenir des informations sur la classe file du fichier pf : après l'avoir créé, taper help(pf).
print("range(5)=",range(5)) for i in range(5) : print(i, end=' ') print() for i in range(5) : print(i**0.5, end=' ')Quand on a écrit quelques lignes, appuyer sur la touche F5 pour exécuter ce programme.