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:
commit
7232977e6d
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user