0
why isn't text inside init printing?
class example(): def __init__(): print("Class: Example") son=example
3 odpowiedzi
+ 2
son = example()
0
you should create the instance of the class . See visph code on how to create instance
0
Okay thanks everybody