Nama Konstruktor Pyhton

class book :
    def __init__(self):
        self.name="Khan" 
        
B=book() 
print(B.name) 
Fierce Falcon