#2
小杨学python2021-11-07 23:34
|
#计算平均值
math = float("87")
eng = float("72")
comp = float("93")
#总成绩
sum = math+eng+comp
#平均值
average = sum/3
print("str(aveage)")
最后没有输出结果