1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-04-06 07:22:43 +02:00

Merge pull request #3564 from PicoSushi/add-output-for-python3-fstring

[python3/en]Add output for python3 f-string.
This commit is contained in:
Adam Bard 2019-07-16 14:31:25 -07:00 committed by GitHub
commit 7232977e6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ len("This is a string") # => 16
name = "Reiko"
f"She said her name is {name}." # => "She said her name is Reiko"
# You can basically put any Python statement inside the braces and it will be output in the string.
f"{name} is {len(name)} characters long."
f"{name} is {len(name)} characters long." # => "Reiko is 5 characters long."
# None is an object