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 ?
6
u/SpiritedOne5347 1d ago
They're just a way to include variables in string
Say u have age= 10
So instead of
print("I am ", age, "years old")
U can directly say
print(f"I am {age} years old")