標(biāo)題: python環(huán)境運行異常 [打印本頁] 作者: linux_xue 時間: 2012-07-18 09:17 標(biāo)題: python環(huán)境運行異常 代碼:
def foo():
"this is a doc string."
return true
在命令行環(huán)境第二行完成后,就報錯:
root@bogon:/opt# python
Python 2.6.6 (r266:84292, Dec 27 2010, 00:02:40)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def foo():
... "this is a doc string." File "<stdin>", line 2
"this is a doc string."
^
IndentationError: expected an indented block
>>>