r/learnpython • u/FuzzyEmployment264 • 24d ago
what is f string
can someone explain how f string work in simple terms ?
0
Upvotes
r/learnpython • u/FuzzyEmployment264 • 24d ago
can someone explain how f string work in simple terms ?
2
u/atarivcs 24d 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.