码迷,mamicode.com
首页 > 编程语言 > 详细

python define function

时间:2019-06-25 09:47:06      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:ber   mod   nbsp   return   pytho   func   cal   number   UNC   

>>> def square(x):
...     calculates the square of the number x.
...     return x*x
... 
>>> square.__doc__
calculates the square of the number x.
>>> help(square)
Help on function square in module __main__:

square(x)
    calculates the square of the number x.

 

python define function

标签:ber   mod   nbsp   return   pytho   func   cal   number   UNC   

原文地址:https://www.cnblogs.com/lianghong881018/p/11080772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!