在Python中使用解释器查找模块'sys'

jez*_*jez 2 python

因此,我只安装了python解释器,并想使用help(sys)功能来获取有关sys模块的更多信息,但是我遇到了这个错误,不知道出了什么问题。

C:\Users\Jake>python
Python 2.7.2 (default, Jun 12 2011, 14:24:46) [MSC v.1500 64 bit (AMD64)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> help(sys)
'more' is not recognized as an internal or external command,
operable program or batch file.

>>>
Run Code Online (Sandbox Code Playgroud)

这是因为我的计算机上没有sys模块的源代码还是完全没有其他东西?任何帮助将不胜感激。

rob*_*off 5

Python使用该more程序显示帮助文本。就是说找不到more程序。应该在C:\Windows\System32\more.com。您需要C:\Windows\System32在PATH环境变量中具有。