标签: python shell
我想在python shell中写3行。我知道我可以在IDLE中执行此操作并运行.py脚本,但想知道是否有办法。我得到“unindent与任何外部缩进级别不匹配”错误。在Linux中运行。
for n in range(1,5): print(n) print('cool')
最后一行收到错误。