python核心编程第二版 2.8题

题目描述:

输入5个数字求其和

total = 0

for i in range(5)

    total = total + int (raw_input('please input 5 numbers'))

print total

猜你喜欢

转载自blog.csdn.net/qq_37599517/article/details/81055437