SyntaxError: multiple statements found while compiling a single statement python

后端 未结 1 620
难免孤独
难免孤独 2020-12-22 08:11

this is my code, super simple:

#borders of the bbox
longmax = 15.418483 #longitude top right
longmin = 4.953142 #longitude top left
latmax = 54.869808 #latit         


        
相关标签:
1条回答
  • 2020-12-22 08:41

    IDLE can only do a single statement at once, i.e. in your case: A single line. So you have to paste in all lines individually and execute them.

    0 讨论(0)
提交回复
热议问题