instance variable and data attribute

后端 未结 0 1984
星月不相逢
星月不相逢 2020-12-21 23:56
class Coordinate (object):
    def __init__ (self, x, y):
        self.x = x
        self.y = y

c = Coordinate (3,4)
print (c.x)

in this code, is c

相关标签:
回答
  • 消灭零回复
提交回复
热议问题