题解 | #累加数与平均值#
累加数与平均值
https://www.nowcoder.com/practice/ed009465ad6940609542ef5879a0d697
运行时间:27ms超过100.00% 用Python 3提交的代码
占用内存:4480KB超过61.79%用Python 3提交的代码
age_list = list(map(int,input().split())) print(sum(age_list),'%.1f'%(sum(age_list)/len(age_list)),sep=' ')