Skip to content

Commit

Permalink
Update python_py.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gdemare authored Sep 11, 2023
1 parent df656c7 commit 9fa9c05
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions aide-memoire/programmation/python_py.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,15 @@ Liste des variables par défaut :

* `type(variable)` renvoie le type de variable.

| Fonction | Définition |
|---|---|
| `list(variable)` | convertir en liste |
| `int()` | convertir en entier |
| `float()` | convertir en float |
| `str()` | convertir en texte |
Fonction | Définition
------------------------|-------------
`list(variable)` | convertir en liste
`int()` | convertir en entier
`float()` | convertir en float
`str()` | convertir en texte

* `texte.split('séparateur')` transformer un caractère en liste en fonction d'un séparateur.
* `format( nombre '.2f' )` format des chiffres le 2 correspond à 2 nbre après la virgule.

#### Vecteurs et listes
`[] = vecteur` et `() = liste` (appelé tupple) Rmq : Les listes ne sont pas modifiables.
Expand Down

0 comments on commit 9fa9c05

Please sign in to comment.