小编典典

SyntaxError:编译单个语句python时发现多个语句

python

这是我的代码,非常简单:

#borders of the bbox
longmax = 15.418483 #longitude top right
longmin = 4.953142 #longitude top left
latmax = 54.869808 #latitude top 
latmin = 47.236219 #latitude bottom

#longitude
longstep = longmax - longmin 
longstepx = longstep / 1000 #longitudal steps the model shall perfom


#latitude
latstep = latmax - longmin
latstepx = latstep / 1000 #latitudal steps the model shall perform

我尝试在Python IDLE(python 3.3)中运行它,并且发生此错误消息

SyntaxError: multiple statements found while compiling a single statement

删除“#”就可以了。

怎么了?!


阅读 609

收藏
2021-01-20

共1个答案

小编典典

IDLE一次只能执行一条语句,即您的情况:一行。因此,您必须分别粘贴所有行并执行它们。

2021-01-20