SyntaxError:编译单个语句python时发现多个语句
这是我的代码,非常简单:
#borders of the bboxlongmax = 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
删除“#”就可以了。
怎么了?!
回答:
IDLE一次只能执行一条语句,即您的情况:一行。因此,您必须分别粘贴所有行并执行它们。
以上是 SyntaxError:编译单个语句python时发现多个语句 的全部内容, 来源链接: utcz.com/qa/402536.html