python

导航

python的函数

来源 :中华考试网 2020-09-16

  

  Python的函数支持递归、默认参数值、可变参数,但不支持函数重载。为了增强代码的可读性,可以在函数后书写“文档字符串”(Documentation Strings,或者简称docstrings),用于解释函数的作用、参数的类型与意义、返回值类型与取值范围等。可以使用内置函数help()打印出函数的使用帮助。比如:

  >>> def randint(a, b):

  ... "Return random integer in range [a, b], including both end points."...

  >>> help(randint)

  Help on function randint in module __main__:

  randint(a, b)

  Return random integer inrange[a, b], including both end points.

分享到

相关资讯