完美解决丨File “invalid.py“, line 1 print(`Hello World!`) ^ SyntaxError: invalid syntax

简介: 完美解决丨File “invalid.py“, line 1 print(`Hello World!`) ^ SyntaxError: invalid syntax
  1. “invalid syntax” 语法错误

在运行一个 python 程序时,如果出现“invalid syntax”错误,则说明该程序中存在语法错误,错误位置可能是在括号、引号、分号、冒号、等号等之前或之后,另外错误的原因可能是缺少了括号、引号、分号、冒号、等号或者错误的使用了括号、引号、分号、冒号、等号等。

比如,在运行一个简单的 python 程序,如下:

print( Hello World! )

如果这个程序中使用的是反引号,括号和引号不配对,则会出现“invalid syntax”语法错误,如下:

File "invalid.py", line 1 print( Hello World! ) ^ SyntaxError: invalid syntax

上面的程序中,使用的反引号是六边形的,这个符号只能用在 python3 中,如果要在 python2 中使用反引号,则必须使用单引号或双引号,修改上面的程序,如下:

print('Hello World!')

如果要在 python3 中使用单引号或双引号,则需要在字符串前面加上前缀 r,如下:

print(r'Hello World!')

在运行这个程序时,不会出现“invalid syntax”语法错误。

  1. “indentation error” 缩进错误

在运行一个 python 程序时,如果出现“indentation error”缩进错误,则说明该程序中存在缩进错误,错误位置可能是在多行缩进不一致,或者在运用了缩进的地方没有使用缩进。

比如,在运行一个简单的 python 程序,如下:

if a == 0: print('a is zero') print('end')

如果这个程序中第二行缩进缺失,则会出现“indentation error”缩进错误,如下:

File "indentation_error.py", line 3 print('end') ^ IndentationError:


相关文章
|
6月前
|
Python
【Python】已解决:re.error: bad escape \z at position 4
【Python】已解决:re.error: bad escape \z at position 4
397 0
|
8月前
|
Python
.repo/repo/main.py“, line 79 file=sys.stderr) SyntaxError: invalid syntax
.repo/repo/main.py“, line 79 file=sys.stderr) SyntaxError: invalid syntax
218 0
|
6月前
|
编解码 开发者 Python
【Python】已解决:SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: t
【Python】已解决:SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: t
675 0
|
6月前
|
机器学习/深度学习 Python
【Python】已解决TypeError: init() got an unexpected keyword argument ‘threshold’
【Python】已解决TypeError: init() got an unexpected keyword argument ‘threshold’
293 0
|
8月前
|
Unix Linux Shell
syntax error: unexpected end of file
syntax error: unexpected end of file
38 0
error C2449: found ‘{‘ at file scope (missing function header?)和error C2059: syntax error : ‘}‘
error C2449: found ‘{‘ at file scope (missing function header?)和error C2059: syntax error : ‘}‘
140 0
Error:Expected linebreaks to be ‘LF‘ but found ‘CRLF‘ linebreak-style
Error:Expected linebreaks to be ‘LF‘ but found ‘CRLF‘ linebreak-style
Uniapp Syntax Error: Error: Unbalanced delimiter found in string
Uniapp Syntax Error: Error: Unbalanced delimiter found in string
303 0
Newline required at end of file but not found.
Newline required at end of file but not found.
201 0
Newline required at end of file but not found.
error C2041: illegal digit ‘9‘ for base ‘8‘ | error C2059: syntax error: ‘bad suffix on number‘
error C2041: illegal digit ‘9‘ for base ‘8‘ | error C2059: syntax error: ‘bad suffix on number‘
150 0

热门文章

最新文章

下一篇
开通oss服务