说明
《Python 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)编写一个 Python 代码来打印 Python 内置函数 sum 的文档(语法、描述等)
Python 代码如下
print(sum.__doc__)
'''
Return the sum of a 'start' value (default: 0)
plus an iterable of numbers
When the iterable is empty, return the start value.
This function is intended specifically for use with
numeric values and may
reject non-numeric types.
'''
docstring 是作为模块、函数、类或方法定义中的第一条语句出现的字符串文字,docstring 将成为该对象的 __doc__
特殊属性。
所有模块通常都应该有 docstring,模块导出的所有函数和类也应该有docstring。
公共方法(包括__init__
构造函数)也应该有文档字符串。
(完)
更新时间:2024-08-16 22:32:10 标签:python 习题 文档