我正在处理一个问题,遇到打印语句的语法错误。我开始注释掉行,并且注释行出现EOF错误。有什么线索可以解决此EOF错误以进行评论吗?
我尝试注释掉这些行,删除这些行,然后在输入错误的情况下再次键入它们,并查找类似的解决方案
这是我当前要运行的内容:
# np_baseball is available
# Import numpy
import numpy as n
# Create np_height_in from np_baseball
np_height_in = np_baseball[0]
print(n.median(np_height_in))
# Print out the mean of np_height_in
print(n.mean(np_height_in)
#print(n.median(np_height_in))
# Print out the median of np_height_in
这是当前错误:
文件“”,第12行 #打印出np_height_in的中位数 ^ SyntaxError:解析时出现意外的EOF
答案 0 :(得分:1)
print(n.mean(np_height_in)
缺少结尾)
。应该是:
print(n.mean(np_height_in))