diff options
author | Kristin Linn <klinn@upenn.edu> | 2015-10-20 16:26:35 -0400 |
---|---|---|
committer | Kristin Linn <klinn@upenn.edu> | 2015-10-20 16:26:35 -0400 |
commit | 396e6f5d9708f827512c4699240f72477366ff76 (patch) | |
tree | d63b41a4d91ea80c594574c48fc6416d6fd9a538 /fr-fr/python-fr.html.markdown | |
parent | 11aab085d656b79482e92a05acbbac81125bfb78 (diff) | |
parent | 5fb5dd7c7fd7670faca6b8cfff9ef1ffdbd65c0d (diff) |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'fr-fr/python-fr.html.markdown')
-rw-r--r-- | fr-fr/python-fr.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fr-fr/python-fr.html.markdown b/fr-fr/python-fr.html.markdown index 58a036ba..3f6dcabb 100644 --- a/fr-fr/python-fr.html.markdown +++ b/fr-fr/python-fr.html.markdown @@ -15,11 +15,11 @@ Je suis tombé amoureux de Python de par la clarté de sa syntaxe. C'est pratiqu Vos retours sont grandement appréciés. Vous pouvez me contacter sur Twitter [@louiedinh](http://twitter.com/louiedinh) ou par e-mail: louiedinh [at] [google's email service] NB: Cet artice s'applique spécifiquement à Python 2.7, mais devrait s'appliquer pour toute version Python 2.x -Vous pourrez bientôt trouver un article pour Python 3! +Vous pourrez bientôt trouver un article pour Python 3 en Français. Pour le moment vous pouvez jettez un coup d'oeil à l'article [Python 3 en Anglais](http://learnxinyminutes.com/docs/python3/). ```python # Une ligne simple de commentaire commence par un dièse -""" Les lignes de commenatires multipes peuvent être écrites +""" Les lignes de commentaires multipes peuvent être écrites en utilisant 3 guillemets ("), et sont souvent utilisées pour les commentaires """ |