« Python » : différence entre les versions

Aller à la navigation Aller à la recherche
Aucun résumé des modifications
(5 versions intermédiaires par le même utilisateur non affichées)
Ligne 2 : Ligne 2 :


== Python ==
== Python ==
La dernière version en novembre 2017 est Python 3.6 :
* https://www.python.org/
Documentation version 3.6 :
* https://docs.python.org/3/
L'outil IPython comme interpréteur de commande plus riche que IDLE :
* http://ipython.org/
Anaconda
*
=== Nouvelle notation ===
Ancienne notation :
<pre>
age = 10
"Jean a {} ans".format(age)
</pre>
Nouvelle notation :
<pre>
age = 10
# un exemple de f-string
f"Jean a {age} ans"
</pre>


== PyScripter ==
== PyScripter ==
Ligne 16 : Ligne 41 :
* http://www.pygame.org/news
* http://www.pygame.org/news


Cours :
== Cours ==
* 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/UCW6TXMZ5Pq6yL6_k5NZ2e0Q : Socratica


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

Version du 24 février 2018 à 17: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