F String Python ne fonctionne pas dans Linux

F String does not work for python version below 3.6.
If python version is below 3.6 use this instead of F string:
print("Let's talk about {}.".format(my_name))
AMi