Contact: aviboots(AT)netvision.net.il
41,615 questions
54,278 answers
573 users
class test: def __init__(self, test): self.test = test obj = test(1234) print(type(obj).__name__) print(obj) ''' run: test <__main__.test object at 0x7f3ddad48190> '''
class test: def __init__(self, test): self.test = test obj = test(1234) print(obj.__class__) print(obj.__class__.__name__) print(obj) ''' run: <class '__main__.test'> test <__main__.test object at 0x7fdbc4add150> '''