bạn chỉ cần sử dụng lệnh help()
để được trợ giúp về các chức năng nội trang cũng như mã của nó.
cho ví dụ: nếu bạn muốn xem mã cho str(), chỉ cần gõ - help(str)
nó sẽ trở lại như thế này,
>>> help(str)
Help on class str in module __builtin__:
class str(basestring)
| str(object='') -> string
|
| 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 --
Nguồn
2016-12-09 14:09:12
Bạn có thể đưa ra ví dụ với 'liệt kê' không? – Benjamin
Bạn có thể xem xét cách tích hợp liệt kê được kiểm tra [ở đây] (http://hg.python.org/cpython/file/b36cb4602e21/Lib/test/test_enumerate.py). – Makoto
mã liệt kê là [ở đây] (http://svn.python.org/view/python/trunk/Objects/enumobject.c?view=markup) –