diff --git a/Scripting/Python/Manip-donnees.html b/Scripting/Python/Manip-donnees.html index c30762b..1b178a2 100644 --- a/Scripting/Python/Manip-donnees.html +++ b/Scripting/Python/Manip-donnees.html @@ -2,7 +2,7 @@ title: Python - Manipulation des données description: published: true -date: 2021-06-07T12:19:06.461Z +date: 2021-06-07T12:19:39.718Z tags: editor: ckeditor dateCreated: 2021-06-07T08:01:47.026Z @@ -46,7 +46,7 @@ C++ est cool
>>> tup[1]
2
Les tuples servent principalement à attribuer plusieurs valeurs :
-####METHODE 1#######
+####EXEMPLE 1#######
>>> tup = (1,2,3)
>>> a,b,c = tup
>>> a
@@ -56,14 +56,14 @@ C++ est cool
>>> c
3
-####METHODE 2#######
+####EXEMPLE 2#######
>>> a, b = 1, 2 #dans ce cas, les parenthèses ne sont pas obligatoires
>>> a
1
>>> b
2
-####METHODE 3#######
+####EXEMPLE 3#######
def example():
return 1,2 #ceci est un tuple