合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
~~~ interactive [ɪntər'æktɪv] adj. 交互式的 prompt [prɒm(p)t] n. 提示符;系统提示符;DOS命令 ~~~ help --------- 在 Python interactive prompt (Python交互提示符)下获取帮助信息 ~~~ help(thing) -- 显示 thing 帮助信息 help() -- 进入 help 交互会话 ~~~ #### help(thing) - help(模块) - help(模块.函数/类) - help(方法描述符) - help("xxx") -- 不建议使用, tips:使用 help 时,需提前引入相关模块 ~~~ >>> help(math) >>> help(math.acos) >>> help(list.index) # list 不是模块 ~~~ #### help() 在Python交互环境中输入help()进入help会话。 在 help 回话中直接输入要查询的 thing 即可获取其帮助信息。 在 help 回话中使用 enter 回车返回 Python 交互环境 #### help文档 换行:enter 翻页:space 退出:q 查看 Python 关键字 -------------------- ~~~ False def if raise None del import return True elif in try and else is while as except lambda with assert finally nonlocal yield break for not class from or continue global pass ~~~ ~~~ >>>help('keywords') -- 返回如上,不建议使用help("thing")模式 或 >>> from keyword import kwlist >>> kwlist ['False','None', 'True', ...] ~~~