Discuss / Python / 为何我写的完全不一样

为何我写的完全不一样

Topic source

鱿鱼

#1 Created at ... [Delete] [Delete and Lock User]

class Screen(object):

    def __init__(self) -> None:

        pass

    @property

    def resolution(self, width, height):

        self.width = width

        self.height = height

    @resolution.getter

    def resolution(self):

        return self.width*self.height


  • 1

Reply