What\'s a nice idiom to do this:
Instead of: print \"%s is a %s %s that %s\" % (name, adjective, noun, verb)
print \"%s is a %s %s that %s\" % (name, adjective, noun, verb)
I want to be able to do something to th
Since Python 3.6 you can now use this syntax, called f-strings, which is very similar to your suggestion 9 years ago