Tweeted By @jakevdp
f-strings in Python 3.6+ are so slick...
— Jake VanderPlas (@jakevdp) August 1, 2018
# before f-strings
>>> name = 'Guido'
>>> print("{name} created Python".format(name=name))
Guido created Python
# with f-strings
>>> print(f"{name} created Python")
Guido created Python