我正在从LPTH学习python。
在练习练习15中,我应该知道read()
使用pydoc做什么;但是,当我尝试使用python -m pydoc read()
时,我会收到类似的错误。
an expression is expected after << ( >>
at line : 1 character 23
python -m pydoc read ( <<<< )
*category info : parser error : (:), parentcontainsErrorRecordException
* FullyQualifiedErrorID: ExpectedExpression
我不明白我做错了什么。
我对raw_input,os,open
采用了同样的方式,但显然我对read()
做错了。
答案 0 :(得分:0)
你可能想要这个:
python -m pydoc read
但那会给你:no Python documentation found for 'read'
您在什么情况下尝试使用read()
...示例:要打开文件并阅读并查看相关文档,请使用
python -m pydoc file