Programmation Python Flashcards

1
Q

Fonction pour afficher résultat calcul

A

print()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

4 types de valeur

A

Entier (int) / virgule flottante (float) / chaîne de caractères (str) / booléen (bool)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A quoi correspond booléen

A

True / False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Division avec quotient entier

A

//

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Reste de la division

A

%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Fonction permettant d’arrondir un nombre à un nombre décimal spécifié

A

round ()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Définition variable

A

Espace mémoire où une valeur est stockée

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

2 conditions nom d’une variable

A

Pas d’espace / doit pas commencer par un chiffre

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Créer une fonction

A

def “nom fonction()”:
commande
return “variable”
print “nom fonction()”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Insérer documentation sur une fonction et commande pour l’afficher

A

Documentation entre 3 guillemets de chaque côté / help()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Exposant

A

**

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Commande demander une valeur

A

input ()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Commande définir type de valeur

A

int() pour nombre entier
str() pour chaîne de caractères
bool() pour booléen
float() pour virgule flottante

How well did you know this?
1
Not at all
2
3
4
5
Perfectly