formations/python-initiation
2022-09-23 15:04:44 +02:00
..
static Je préfère en parler en Python avancé. 2022-05-16 08:50:44 +02:00
.gitignore Rename for consistency. 2021-07-16 07:37:18 +02:00
demo-jupyter-numpy-pandas.ipynb Renaming without spaces. 2021-07-16 07:53:31 +02:00
initiation.md Bye bye setup.cfg. 2022-09-23 15:04:44 +02:00
Makefile Concat files, I'm not happy with this artificial restrictions on days. 2021-10-24 15:54:34 +02:00
pandas.loc.ipynb Renaming without spaces. 2021-07-16 07:53:31 +02:00
README.md notes 2022-09-15 22:39:00 +02:00
test.py Rename for consistency. 2021-07-16 07:37:18 +02:00

TODO

Lors de la présentation des fonctions natives dans un REPL, il y a une ambiguité (print vs return):

>>> int("42")
42
>>> print("42")
42

On pourrait passer par une variable peut-être :

>>> quarante_deux = int("42")
>>> quarante_deux
42

>>> result = print("42")
42
>>> print(result)
None