diff options
author | caminsha <c.96marco@hotmail.com> | 2020-02-16 22:02:27 +0100 |
---|---|---|
committer | caminsha <c.96marco@hotmail.com> | 2020-02-16 22:02:27 +0100 |
commit | d533a06ba06f3bda8365461a7e4965f3be5d7218 (patch) | |
tree | 86a59f8f63ee5ad0811db70b5ba2e25e39722802 | |
parent | 1055a42304c3e944894442df3cc71d9ff733bf82 (diff) |
Fixed explanation about legacy python
-rw-r--r-- | de-de/python-de.html.markdown | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/de-de/python-de.html.markdown b/de-de/python-de.html.markdown index bb1a555d..1de74bc4 100644 --- a/de-de/python-de.html.markdown +++ b/de-de/python-de.html.markdown @@ -14,7 +14,8 @@ Python wurde in den frühen Neunzigern von Guido van Rossum entworfen. Es ist he Feedback ist herzlich willkommen! Ihr erreicht mich unter [@louiedinh](http://twitter.com/louiedinh) oder louiedinh [at] [google's email service]. -Hinweis: Dieser Beitrag bezieht sich implizit auf Python 3. Falls du lieber Python 2.7 lernen möchtest, schau [hier](http://learnxinyminutes.com/docs/pythonlegacy/) weiter. +Hinweis: Dieser Beitrag bezieht sich implizit auf Python 3. Falls du lieber Python 2.7 lernen möchtest, schau [hier](http://learnxinyminutes.com/docs/pythonlegacy/) weiter. Beachte hierbei, +dass Python 2.7 als deprecated gilt und nicht mehr verwendet werden sollte. ```python @@ -119,10 +120,6 @@ False or True #=> True "{name} will {food} essen".format(name="Bob", food="Lasagne") #=> "Bob will Lasagne kochen" -#Falls dein Python3 Code auch unter Python 2.5 oder darunter laufen soll, -# kann das alte Format benutzt werden: -"%s können %s werden" % ("Strings", "interpoliert") - # None ist ein Objekt None #=> None |