help python(查看模块帮助文档)

本文介绍了如何使用Python内置的帮助文档查询功能,通过示例展示了如何查找内置函数、模块及特定方法的帮助信息。学习这些技巧有助于开发者更高效地利用Python的强大功能。

 查看模块帮助文档:

  • help(len) -- docs for the built in len function (note here you type "len" not "len()" which would be a call to the function)
  • help(sys) -- overview docs for the sys module (must do an "import sys" first)
  • dir(sys) -- dir() is like help() but just gives a quick list of the defined symbols
  • help(sys.exit) -- docs for the exit() function inside of sys
  • help('xyz'.split) -- it turns out that the module "str" contains the built-in string code, but if you did not know that, you can call help() just using an example of the sort of call you mean: here 'xyz'.foo meaning the foo() method that runs on strings
  • help(list) -- docs for the built in "list" module
  • help(list.append) -- docs for the append() function in the list module

转载于:https://www.cnblogs.com/zhizouxiao/p/3341286.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值