使用继承为Sun和Planets创建超类SunPlanet。

时间:2016-07-29 18:31:42

标签: python inheritance

我的班级课程:

import

我的主要计划:

   df <- read.table(header=T, text = "
   lon lat date    value
   1   1   1    1 18.00000
   2   2   1    1 17.83333
   3   3   1    1 18.83333
   4   4   1    1 20.50000")

   # Your melted data frame
   df
   #   lon lat date    value
   # 1   1   1    1 18.00000
   # 2   2   1    1 17.83333
   # 3   3   1    1 18.83333
   # 4   4   1    1 20.50000

   df$Dates <- seq(as.Date("1986-01-01"), by = "month", length.out = 4)
   df
   #   lon lat date    value      Dates
   # 1   1   1    1 18.00000 1986-01-01
   # 2   2   1    1 17.83333 1986-02-01
   # 3   3   1    1 18.83333 1986-03-01
   # 4   4   1    1 20.50000 1986-04-01

This is the link for the link for the error description.

请仔细阅读课程代码,请帮助我。我一周都试过这个。我没有得到我错过的地方。

1 个答案:

答案 0 :(得分:0)

仅解决错误,未正确调用super()。将其更改为:

100

后来:

super(Sun, self).__init__(iname, irad, im)

如果您希望其他人查看您的代码,这可能不是最好的地方。请考虑发布到codereview.stackexchange.com