IndentationError: unexpected indent
即使我编写的代码完全按照书中所示(http://learnpythonthehardway.org/book/ex25.html)
我确定我使用正好 4 个空格来缩进“def”之后的行。
在 Windows 7 上使用 Python 2.7
这是我在 powershell 中遇到的错误:
PS C:\Users\Kiedis\python> python ex25.py
File "ex25.py", line 3
return sorted(words)
^
IndentationError: unexpected indent
这是我的代码的前 3 行:
def sort_words(words):
"""Sorts the words"""
return sorted(words)