diff options
author | caminsha <c.96marco@hotmail.com> | 2020-02-16 22:07:55 +0100 |
---|---|---|
committer | caminsha <c.96marco@hotmail.com> | 2020-02-16 22:07:55 +0100 |
commit | 9f1addce40a8b75bb78fb5ff8d97ce040cf27110 (patch) | |
tree | 86074aad98c2ad870c6ed5cf8487a17705bcd964 /de-de | |
parent | d533a06ba06f3bda8365461a7e4965f3be5d7218 (diff) |
removed section with different .format for stringformatting
Diffstat (limited to 'de-de')
-rw-r--r-- | de-de/python-de.html.markdown | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/de-de/python-de.html.markdown b/de-de/python-de.html.markdown index 1de74bc4..123a781d 100644 --- a/de-de/python-de.html.markdown +++ b/de-de/python-de.html.markdown @@ -116,10 +116,6 @@ False or True #=> True "{0} mag Spagetthi, {0} liebt es zu Schwimmen und ganz besonders mag {0} {1}".format("Hans", "Blattsalat") #=> "Hans mag Spagetthi, Hans liebt es zu Schwimmen und ganz besonders mag Hans Blattsalat" -# Wir können Schlüsselwörter verwenden, wenn wir nicht abzählen wollen. -"{name} will {food} essen".format(name="Bob", food="Lasagne") -#=> "Bob will Lasagne kochen" - # None ist ein Objekt None #=> None |