python的help用法及退出方式
一、进入交互模式
打开cmd命令行窗口,输入python效果如下:
D:\Company\Code\python>python Python2.7.14(v2.7.14:84471935ed,Sep162017,20:19:30)[MSCv.150032bit(In tel)]onwin32 Type"help","copyright","credits"or"license"formoreinformation. >>>
二、使用help()查看帮助
1、输入help(raw_input)查看,效果如下:
>>>help(raw_input) Helponbuilt-infunctionraw_inputinmodule__builtin__: raw_input(...) raw_input([prompt])->string Readastringfromstandardinput.?Thetrailingnewlineisstripped. IftheuserhitsEOF(Unix:Ctl-D,Windows:Ctl-Z+Return),raiseEOFError. OnUnix,GNUreadlineisusedifenabled.?Thepromptstring,ifgiven, isprintedwithoutatrailingnewlinebeforereading.
退出help()函数
查看过后想要退出help函数,需输入字母q
如果使用help(object)或help(‘object’),退出时直接输入字母q即可;
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容