Phython
Instruction | Python | Exemples | Ecrire un message | print"message" | print"La valeur de X est : " | Ecrire le contenu d'une variable X | print X | print X | Ecrire un message suivi du contenu d'une variable X | print"message",X | print"La valeur de X est : ",X | Saisir le contenu d'une variable X précédé d'un message. | X=input("message") | X=input("Saisir la valeur de X ") | Affectation : A prend la valeur 5 | A=5 | A=5 | Opérations : A+B A-B 2A 2/A A3 2,457 Partie entière de A | A+BA-B2*A2/Apow(A,3) from math import*sqrt(A) from math import*2.457floor(A) from math import*pi from math import* | A+BA-B2*A2/Apow(A,3) from math import*sqrt(A) from math import*2.457floor(A) from math import*pi from math import* | Définir une fonction; f(x) = 2x + 1 | def f(x): return 2*x+1 | def f(x): return 2*x+1 | L'image de 2 par la fonction f | f(2) | f(2) | Test logiques : A=B A≠B A≤B A≥B A<B<C A<2 ou bien A>4 | A==BA!=BA<=BA>=BA<B and B<CA<2 or A>4 | A==BA!=BA<=BA>=BA<B and B<CA<2 or A>4 | Instruction conditionnelle"si condition alors instruction" | if condition: instruction | if x >=0: print"le nombre x est positif" | Instruction conditionnelle"si condition alors instruction1 sinon instruction2" | if condition: instructionelse: instruction | Programme permettant de savoir si un nombre est positif ou strictement négatif.if x >=0: print"x est positif"else: print"x