标签:python函数
sum()函数接受一个list作为参数,并返回list所有元素之和。请计算 1*1 + 2*2 + 3*3 + ... + 100*100。
答案:
L=[] while x<=100: L.append(x*x) x=x+1 print sum(L)
python函数调用入门
原文地址:http://echoliuye.blog.51cto.com/10053145/1678289