With version <3 : it will give error for using f-strings.
with python 3, it should work fine:
You can simply use % formatting(Older but still commonly used in legacy code)
%
my_name = 'Zed A. Shaw' print("Let's talk about %s" % my_name)