what is the major different between class object , instance object and method object in python

后端 未结 0 727
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-24 11:51
class Complex:
     def __init__(self, realpart, imagpart):
         self.r = realpart
         self.i = imagpart
x = Complex(3.0, -4.5)
print (x.r, x.i)
相关标签:
回答
  • 消灭零回复
提交回复
热议问题