美文网首页ITS·黑客
【python】使用帮助

【python】使用帮助

作者: 某米狼 | 来源:发表于2017-05-22 19:42 被阅读6次
  1. dir 查看对象包含哪些属性,str类型为例
>>> dir(str) 
  1. 查看某个属性的帮助文档,str的split属性为例
print(str.split.__doc__)

或者

help(str.split)
  1. 查看某个对象的详细文档用help,如help(str)
    退出按q

相关文章

网友评论

    本文标题:【python】使用帮助

    本文链接:https://www.haomeiwen.com/subject/cwsixxtx.html