课程
/后端开发
/Python
/初识Python
课程给出的代码。
L = [ ]x = 1while x <= 100: L.append(x * x) x = x + 1print sum(L)
错误提示的内容
print sum(L)
TypeError: 'int' object is not callable
2017-02-05
源自:初识Python 7-2
正在回答
x*x改成x**x
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序