Python f-strings are just strings: Use them anywhere

Python f-strings are just strings: Use them anywhere

Remember, Python f-strings are strings:

1. Use f-strings anywhere you’d use strings, e.g., filenames and URLs
2. You don’t have to print an f-string; you can store it.
3. Don’t overuse them! I see people writing

print(f'{x}')

when they can say

print(x)