python – SyntaxError:编译单个语句时找到的多个语句
作者:互联网
我在Python 3.3中,我只输入这3行:
import sklearn as sk
import numpy as np
import matplotlib.pyplot as plt
我收到这个错误:
SyntaxError: multiple statements found while compiling a single statement
我能做错什么?
编辑:如果有人遇到这个问题,我发现的解决方案是下载Idlex并使用其IDLE版本,它允许多行.
解决方法:
在shell中,您不能一次执行多个语句:
>>> x = 5
y = 6
SyntaxError: multiple statements found while compiling a single statement
你需要逐个执行它们:
>>> x = 5
>>> y = 6
>>>
当您看到正在声明多个语句时,这意味着您将看到一个稍后将执行的脚本.但是在交互式解释器中,您不能一次执行多个语句.
标签:python-3-3,python,syntax-error 来源: https://codeday.me/bug/20190917/1809541.html