📜  f string python not working in linux - Python代码示例

📅  最后修改于: 2022-03-11 14:46:03.218000             🧑  作者: Mango

代码示例1
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))