课程
/后端开发
/Python
/初识Python
2020-02-16
源自:初识Python 5-4
正在回答
for循环定义的变量scoer,下面的是score
L = [75,92,59,68] sum = 0.0 for score in L: sum = sum + score print (sum/4)
我的代码如上:但总是报错如下: File "<stdin>", line 3 print (sum/4)
for score in L: sum = sum + score print(sum/4)
最后一个print应该和for对齐吧,你的缩进有点奇怪,是不是有特殊字符
零初九 提问者
你的score在for语句中写错了
跟下面不一样
yyyloki 回复 零初九 提问者
print 没有缩进
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序