课程
/后端开发
/Python
/初识Python
L=[] >>> x=1 >>> while x<=100: L.append(x*x) x=x+1 print sum(L) 这段代码怎么总是报错呀,是格式的问题还是代码的问题呢
2016-12-12
源自:初识Python 7-2
正在回答
x = x + 1和print sum(L)中要空一行,让循环语句结束
# -*- coding: utf-8 -*- __author__ = 'xyd' L=[] x=1 while x<=100: L.append(x*x) x=x+1 print sum(L) # 我怀疑是你代码缩进出问题了
xiong_betty123 提问者
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序