Phython

450 mots 2 pages
Tableau récapitulatif des instructions en Python

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

en relation

  • Brevet Secours Am Du Sud Nov 2013
    1090 mots | 5 pages
  • Cours
    925 mots | 4 pages
  • Synthèse rire
    523 mots | 3 pages
  • prem_es_2014_d8_co
    1645 mots | 7 pages
  • DM 11
    277 mots | 2 pages
  • L2 mass
    700 mots | 3 pages
  • Ds physique
    342 mots | 2 pages
  • Corrigé bac stg
    3137 mots | 13 pages
  • Maths les primitives
    1329 mots | 6 pages
  • Maths
    312 mots | 2 pages
  • explication
    1149 mots | 5 pages
  • Ds maths
    649 mots | 3 pages
  • Aucun interet
    340 mots | 2 pages
  • Rappot de stage en restauration
    628 mots | 3 pages
  • MANAGEMENT
    459 mots | 2 pages