Facebook
From Scanty Iguana, 6 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 237
  1. class NaZakupy:
  2. #1    
  3.         def __init__(self):
  4.             self.nazwaProduktu = 'banana'
  5.             self.ilosc = 30
  6.             self.jednostkaMiary = 'kg'
  7.             self.cenaJed = 3
  8.         def wyswietlProdukt(self):
  9.             print("Nazwa=>",self.nazwaProduktu,", ilosc=>",self.ilosc,", jednost=>",self.jednostkaMiary,"=>", self.cenaJed)
  10.         def ileProduktu(self):
  11.             print(str(self.ilosc)+str(' ')+self.jednostkaMiary)
  12.         def ileKosztuje(self):
  13.             print(self.ilosc * self.cenaJed)
  14.        
  15. obiekt = NaZakupy()
  16. #2
  17. obiekt.wyswietlProdukt()
  18. #3
  19. obiekt.ileProduktu()
  20. #4
  21. obiekt.ileKosztuje()
  22.