当前位置: 代码迷 >> 综合 >> VS Code Python “Statements must be separated by newlines or semicolons“
  详细解决方案

VS Code Python “Statements must be separated by newlines or semicolons“

热度:80   发布时间:2023-11-14 22:15:31.0

起因

我在网上找到Python的脚本想在VS Code下运行,但是一直有这个提示报错,我在网上找了很多方法都没有用。最后我想起来Python的编码规范。

Python2的情况下,print可以不输入括号,但是在Python3的情况下你用print必须要加括号,所以解决方法是…

解法

列如代码

print "hello,world\n" #在Python3坏境会报错

将代码改为

print ("hello,world\n") #就是在引号两边加了括号

就解决了

— 2022年3月11日更新 —

另一种可能是缩进的问题,没有严格控制。
示例代码

if 1 == 1:
print("true") # 缩进在了同一列

修改为

if 1 == 1:print("true")

— 2022年3月24日更新 —

还有一种可能是使用了类型名来定义变量。
示例代码

int a = 123
list b = [1, 2, 3]

修改为

a = 123
b = [1, 2, 3]
  相关解决方案