age = 32
print(f"Age: {age}")
Thus concludes the lecture on f-strings.
I find it funny and satisfying that Python has converged to it's own "printf", by which I mean print(f"").
It’s unclear what the big advantage is over `print("Age: "+age)`. It’s even more characters, in that specific example.
I find it funny and satisfying that Python has converged to it's own "printf", by which I mean print(f"").