python的help用法及退出方式
一、進(jìn)入交互模式
打開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()函數(shù)
查看過后想要退出help函數(shù),需輸入字母q
如果使用help(object)或help(‘object’),退出時直接輸入字母q即可;
如果是help(),輸入字母q后會出現(xiàn)help>提示符(prompt),此時再輸入字母q并按下回車鍵即可退出?;蛘呤褂肅trl+z。
以上內(nèi)容為大家介紹了python培訓(xùn)之help函數(shù)怎么退出,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。