小編給大家分享一下python中help函數(shù)的退出方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)建站是一家專注于成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),平鄉(xiāng)網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)建站做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:平鄉(xiāng)等地區(qū)。平鄉(xiāng)做網(wǎng)站價(jià)格咨詢:13518219792
python的help用法及退出方式
一、進(jìn)入交互模式
打開cmd命令行窗口,輸入python效果如下:
D:\Company\Code\python>python Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (In tel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>>
二、使用help()查看幫助
1、輸入help(raw_input)查看,效果如下:
>>> help(raw_input) Help on built-in function raw_input in module __builtin__: raw_input(...) raw_input([prompt]) -> string Read a string from standard input. ?The trailing newline is stripped. If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise EOFError. On Unix, GNU readline is used if enabled. ?The prompt string, if given, is printed without a trailing newline before reading.
退出help()函數(shù)
查看過后想要退出help函數(shù),需輸入字母q
如果使用help(object)或help(‘object’),退出時(shí)直接輸入字母q即可;
如果是help(),輸入字母q后會(huì)出現(xiàn)help>提示符(prompt),此時(shí)再輸入字母q并按下回車鍵即可退出?;蛘呤褂肅trl+z 。
看完了這篇文章,相信你對(duì)python中help函數(shù)的退出方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!