« Python : Les variables » : différence entre les versions

De www.yakakliker.org
(Page créée avec « === Déclarer une variable === <syntaxhighlight lang="python3"> nom_de_la_variable = uneValeur </syntaxhighlight> === Afficher une variable === <syntaxhighlight lang="python3"> variable = 'Bonjour tout le monde' print(variable) </syntaxhighlight> === Liens === https://dyma.fr/developer/list/chapters/core/619556fdd5fe7e09d4aba395/lesson/python/61969e5866ef0d5e68f7f66d/2/2 Catégorie:Python Catégorie:Scripts »)
 
Aucun résumé des modifications
Ligne 10 : Ligne 10 :
print(variable)
print(variable)
</syntaxhighlight>
</syntaxhighlight>
=== Types de variables ===
[[Fichier:Capture d’écran du 2024-03-22 15-29-41.png|sans_cadre]]


=== Liens ===
=== Liens ===

Version du 22 mars 2024 à 16:31

Déclarer une variable

nom_de_la_variable = uneValeur

Afficher une variable

variable = 'Bonjour tout le monde'

print(variable)

Types de variables

Liens

https://dyma.fr/developer/list/chapters/core/619556fdd5fe7e09d4aba395/lesson/python/61969e5866ef0d5e68f7f66d/2/2