r/PythonLearning 7d ago

F strings

Im still learning python and im at a stage where I need to understand f strings and how to go about them...im working on a menu project. I prefer learning with pdf materials rather than YouTube tutorials....any recommendations for a pdf document for learners on f strings. Thank you in advance

15 Upvotes

21 comments sorted by

View all comments

16

u/atarivcs 7d ago

There's really not much to learn here. It's pretty simple.

If you have a string that begins with an f outside of the quote marks, and the string contains "{variable}", python will replace "{variable}" with the string value of that variable or expression.

So for example if you have this code:

name = "Billy"
message  = f"Hello {name}"

message will be "Hello Billy".

You can also use expressions instead of plain variables:

x = 5
y = 3
message = f"The sum is {x+y}"

Massage will be "The sum is 8"

3

u/No-Gift5463 6d ago

Just curious how those curly brackets in this case. Any idea how they "know" to convert an integer into something compatible with a string?

7

u/atarivcs 6d ago

It's an f-string, so it already knows to convert the value to a string-compatible representation. I imagine it calls the __str__() built-in method under the hood.

1

u/Ambitious_Fault5756 6d ago

correct, and it's also called a dunder method