【发布时间】:2020-12-17 23:00:39
【问题描述】:
使用以下 python 3 代码:
print("The nodes visited in the frontier are:", end = " ")
我收到这个错误
IndentationError: unexpected indent
如何解决这个问题?
【问题讨论】:
-
一定有一些语句你可能用空格缩进,而有些则用制表符缩进。所以有一个错误。
-
在此处添加完整程序
标签: python python-3.x error-handling whitespace indentation