1
0
Bifurcation 0
miroir de https://github.com/PAPAMICA/Wiki-Tech.io.git synchronisé 2024-12-29 02:50:22 +01:00

docs: update Scripting/Python/Manip-donnees

Cette révision appartient à :
Maxime Mourier 2021-06-07 12:20:02 +00:00 révisé par Mickael Asseline
Parent a4ec2f1712
révision 1fbf73daad

Voir le fichier

@ -2,7 +2,7 @@
title: Python - Manipulation des données
description:
published: true
date: 2021-06-07T12:19:39.718Z
date: 2021-06-07T12:20:00.873Z
tags:
editor: ckeditor
dateCreated: 2021-06-07T08:01:47.026Z
@ -68,7 +68,7 @@ def example():
return 1,2 #ceci est un tuple
tup = example()
a, b = example
a, b = example()
>>> tup
(1, 2)