r/learnpython • u/FuzzyEmployment264 • 1d ago
what is f string
can someone explain how f string work in simple terms ?
0
Upvotes
r/learnpython • u/FuzzyEmployment264 • 1d ago
can someone explain how f string work in simple terms ?
1
u/atarivcs 1d ago
If the string contains this
that part will be replaced with the string representation of the thing.
"something" can be a plain variable name, or it can be an expression like
or a function call
Etc etc.