« Python » : différence entre les versions

Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Ligne 44 : Ligne 44 :
* http://www.maths-algo.fr/algo/cours/cours_pyhon_installer.htm
* http://www.maths-algo.fr/algo/cours/cours_pyhon_installer.htm
* https://www.youtube.com/channel/UCS2e0hEJMhwd6bNscS60xTg : FormationVidéo
* https://www.youtube.com/channel/UCS2e0hEJMhwd6bNscS60xTg : FormationVidéo
* https://www.youtube.com/channel/UCW6TXMZ5Pq6yL6_k5NZ2e0Q : Socratica


== Voir aussi ==
== Voir aussi ==

Version du 24 février 2018 à 16:34

Python est un langage de programmation.

Python

La dernière version en novembre 2017 est Python 3.6 :

Documentation version 3.6 :

L'outil IPython comme interpréteur de commande plus riche que IDLE :

Anaconda

Nouvelle notation

Ancienne notation :

age = 10
"Jean a {} ans".format(age)

Nouvelle notation :

age = 10
# un exemple de f-string
f"Jean a {age} ans"

PyScripter

PyScripter est un environnement de développement intégré (EDI) pour Python.

Téléchargement :

Pygame

Le livre de Pygame sur Wikilivre

Pygame

Cours

Voir aussi