Python 类继承 - 均值,错误:未定义均值
Posted
技术标签:
【中文标题】Python 类继承 - 均值,错误:未定义均值【英文标题】:Python Class Inheritance -Mean, error:mean is not defined 【发布时间】:2020-02-10 15:52:39 【问题描述】:我需要对 mean 函数进行类继承。我的代码应该计算特定数据行的平均值。最终用户输入所需的行。当我尝试运行我的代码时,我收到此错误消息:
class newMean(mean):
NameError: name 'mean' is not defined
我在我的代码中遗漏了什么可以识别平均值来自统计数据?
这是我的代码:
class newMean(mean):
'a subclass of mean that implements method readAndComputeMean_SM '
【问题讨论】:
【参考方案1】:尝试从统计包中导入它。 喜欢:
from statistics import mean
【讨论】:
以上是关于Python 类继承 - 均值,错误:未定义均值的主要内容,如果未能解决你的问题,请参考以下文章