Untitled

Anonymous
plain_text
01/22/2025 2:38 PM
368 B
12
Indexable
class Pc:
    def __init__(self,brand,type,price,materijal=None):
        self.brand = brand
        self.type = type
        self.price = price

    
    
if __name__ == "__main__": 

 komp = Pc("Asus","Laptop","999")   

 print(komp.brand,komp.type,komp.price)
Editor is loading...
Leave a Comment