Discuss / Python / 交作业(不太理解的话 就多看几遍课程 写出来还是比较简单的)

交作业(不太理解的话 就多看几遍课程 写出来还是比较简单的)

Topic source

class Screen(object): @property def width(self): return self._width @width.setter def width(self,value): self._width = value

  @property
  def height(self):
      return self._height
  @width.setter
  def height(self,value):
      self._height = value

  @property
  def resolution(self):
      return self._width * self._height

  • 1

Reply