summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-02-17 00:26:43 +0100
committercaminsha <c.96marco@hotmail.com>2020-02-17 00:26:43 +0100
commitc5362aaed1d4df5c6bc57c8d65db1b985c546b1d (patch)
treef5f9a525f75c4ab60a30c431b0d4758d3af00075 /de-de
parent254a6098761eb8f1f05eef31a84853ba0dbabc86 (diff)
Added example for f-strings
Diffstat (limited to 'de-de')
-rw-r--r--de-de/python-de.html.markdown8
1 files changed, 8 insertions, 0 deletions
diff --git a/de-de/python-de.html.markdown b/de-de/python-de.html.markdown
index 39908f5c..337f1224 100644
--- a/de-de/python-de.html.markdown
+++ b/de-de/python-de.html.markdown
@@ -116,6 +116,14 @@ 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"
+# Die Formatierung kann auch mit `f-strings` oder formattierten Strings gemacht
+# werden (ab Python 3.6+)
+name = "Sandra"
+f"Sie hat gesagt, ihr name sei {name}." # => Sie hat gesagt, ihr Name sei Sandra."
+# Es ist möglich, andere Anweisungen innerhalb der geschweiften Klammern zu
+# setzen, welche dann im Output des Strings angezeigt werden.
+f"{name} ist {len(name)} Zeichen lang" # => Sandra ist 6 Zeichen lang.
+
# None ist ein Objekt
None #=> None