python

当前位置:中华考试网 >> python >> python编程基础 >> 文章内容

python的函数

来源:中华考试网  [2020年9月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.

责编:hym
  • 会计考试
  • 建筑工程
  • 职业资格
  • 医药考试
  • 外语考试
  • 学历考试