码迷,mamicode.com
首页 > 其他好文 > 详细

函数实现 多个数据求平均值

时间:2020-05-03 14:25:54      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:code   style   image   class   均值   str   ima   函数实现   http   

def average(*args):
    print(args)
    # (1, 2, 3)
    # (1, 2, 3)
    print(len(args))
    # 3
    # 3
    print(sum(args, 0.0) / len(args))

average(*[1, 2, 3])
# 2.0
average(1, 2, 3)
# 2.0

技术图片

 

 

函数实现 多个数据求平均值

标签:code   style   image   class   均值   str   ima   函数实现   http   

原文地址:https://www.cnblogs.com/hany-postq473111315/p/12821637.html

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