Programmation Python Flashcards
Fonction pour afficher résultat calcul
print()
4 types de valeur
Entier (int) / virgule flottante (float) / chaîne de caractères (str) / booléen (bool)
A quoi correspond booléen
True / False
Division avec quotient entier
//
Reste de la division
%
Fonction permettant d’arrondir un nombre à un nombre décimal spécifié
round ()
Définition variable
Espace mémoire où une valeur est stockée
2 conditions nom d’une variable
Pas d’espace / doit pas commencer par un chiffre
Créer une fonction
def “nom fonction()”:
commande
return “variable”
print “nom fonction()”
Insérer documentation sur une fonction et commande pour l’afficher
Documentation entre 3 guillemets de chaque côté / help()
Exposant
**
Commande demander une valeur
input ()
Commande définir type de valeur
int() pour nombre entier
str() pour chaîne de caractères
bool() pour booléen
float() pour virgule flottante