python的新手。当我使用教程中的命令时,我不断收到此语法错误。
>>> ls
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'ls' is not defined
>>> python cupp.py -i
File "<stdin>", line 1
python cupp.py -i
^
SyntaxError: invalid syntax
>>> ls
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'ls' is not defined
>>> print("Books")
Books
screenshot of syntax error in terminal screenshot of ls syntax error in juptyr notebook 打印命令有效,但没有其他作用。我已经用这个错误搜索了一些错误,但无济于事。我应该遵循的任何建议或教程链接吗?谢谢。
答案 0 :(得分:0)
您正在运行不是Python命令的shell命令(ls
)。要在python中列出目录:
`导入操作系统
os.listdir(路径) `