我最近尝试学习用 python 编写代码,但我对那里的任何编程语言的知识都为零,我在其中遇到了这个问题,我正在尝试使用 f-string 函数。
我的 Python 版本是 3.6.2
这是我要运行的代码
greeting = 'Hello'
name = 'John'
message = f'{greeting} {name}. Welcome!'
print(message)
这是它显示给我的错误。
File "/Users/RQ/Desktop/intro.py", line 16
message = f'{greeting} {name}. Welcome!'
^
SyntaxError: invalid syntax
[Finished in 0.0s with exit code 1]
我使用的是 Mac 10.12.6 操作系统版本
我还删除了其中的默认 python 2.7 版本。
我应该怎么做才能解决它?