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

python文档字符串(函数使用说明)

时间:2019-07-30 00:27:23      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:doc   技术   spl   http   code   自定义函数   使用说明   元组   nbsp   

关键字: 函数说明、help()函数

1.效果图:

技术图片

2.代码:

# 文档字符串( doc str)  是  函数使用说明
# 用法: 在函数第一行写一个字符串
def fn(*nums):
    ‘‘‘
    函数的作用: 计算任意数值的总和
    函数的参数: *nums 会接受所有传进来的值,保存到一个元组中(装包)
    ‘‘‘
    print(nums,type(nums))
    #定义一个变量,用来保存总和
    result = 0
    for n in nums:
        result += n
    return result
print(fn(2,5,7,8))

拓展: help()函数  

  效果图:

    查询自定义函数用法

技术图片

 

 

 

 

    查询python内置print()函数用法

技术图片

 

python文档字符串(函数使用说明)

标签:doc   技术   spl   http   code   自定义函数   使用说明   元组   nbsp   

原文地址:https://www.cnblogs.com/FlyingLiao/p/11267223.html

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