Answers for "f string python not working in linux"

1

f string python not working in 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))
Posted by: Guest on July-11-2021

Code answers related to "f string python not working in linux"

Python Answers by Framework

Browse Popular Code Answers by Language