计蒜客:求平均年龄Python方法
Posted Thomas的编程技术栈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计蒜客:求平均年龄Python方法相关的知识,希望对你有一定的参考价值。
题目链接:https://nanti.jisuanke.com/t/T1050
用到print字符串小数点方法
n = int(input())
stus = []
num = 0
for i in range(0, n):
temp = int(input())
stus.append(temp)
num += temp
pass
print("%.2f"%(num / n))
以上是关于计蒜客:求平均年龄Python方法的主要内容,如果未能解决你的问题,请参考以下文章