python怎么查看函数源代码_查内置Python函数的源代码?2种⽅法,
您可以使⽤help(str)查看有关代码段的⽤法
您可以使⽤help(str)检查这些模块的隐藏代码
1)检查:
使⽤inspect模块探索你想要的代码......注意:您只能浏览已导⼊的模块(aka)包的代码
例如:
>>> import randint
>>> from inspect import getsource
>>> getsource(randint) # here i am going to explore code for package called `randint`
2)help():
您可以使⽤help(str)命令来获取有关内置函数及其代码的帮助。
例如: 如果你想看到str()的代码,只需输⼊ - help(str)
它会像这样返回,
>>> help(str)
Help on class str in module __builtin__:
class str(basestring)
| str(object='') -> string
如何查看html代码|
| Return a nice string representation of the object.
| If the argument is a string, the return value is the same object.
|
| Method resolution order:
| str
| basestring
| object
|
| Methods defined here:
|
| __add__(...)
| x.__add__(y) <==> x+y
|
| __contains__(...)
| x.__contains__(y) <==> y in x
|
| __eq__(...)
| x.__eq__(y) <==> x==y
|
| __format__(...)
| S.__format__(format_spec) -> string
|
| Return a formatted version of S as described by format_spec. |
| __ge__(...)
| x.__ge__(y) <==> x>=y
|
| __getattribute__(...)
-- More --
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论