SIR AAP NE BATAYA THA CLAAS ME KI CONSTRUCTOR KO CAL KARNE KE NEED NHI HA BIT WITHOUT CONSTRUCTOR KO CALL KIYE OUTPUT NOTHING AA RAH HAI
#How to Create Constructor
class myclass:
def int(self):
print(‘This is my Constructor’)
m1=myclass()
m1.int()