diff options
author | Gnomino <gnomino@gnomino.eu> | 2015-10-11 13:47:44 +0200 |
---|---|---|
committer | Gnomino <gnomino@gnomino.eu> | 2015-10-11 13:47:44 +0200 |
commit | 097c839b7bbf03dd2ee50c9ccabde147e6bf285e (patch) | |
tree | eb88d4249c5f2ef0399d91879d2a130f41d1971f /fr-fr/python3-fr.html.markdown | |
parent | aad7eb82dd34c53dcdf15a8ea34dbee0df066bcc (diff) |
Changed way of creating classes
Diffstat (limited to 'fr-fr/python3-fr.html.markdown')
-rw-r--r-- | fr-fr/python3-fr.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fr-fr/python3-fr.html.markdown b/fr-fr/python3-fr.html.markdown index b687143c..22256efc 100644 --- a/fr-fr/python3-fr.html.markdown +++ b/fr-fr/python3-fr.html.markdown @@ -570,8 +570,8 @@ filter(lambda x: x > 5, [3, 4, 5, 6, 7]) # => [6, 7] #################################################### -# On hérite de object pour créer une classe -class Human(object): +# On utilise l'opérateur "classe" pour définir une classe +class Human: # Un attribut de la classe. Il est partagé par toutes les instances de la classe. species = "H. sapiens" |