Veri sınıfları

Python'da Veri Tipleri

Jason Myers

Instructor

Neden veri sınıfları

  • Varsayılan değer desteği
  • Nesnelerin özel gösterimleri
  • Kolay tuple veya sözlük dönüşümü
  • Özel özellikler
  • Dondurulmuş örnekler
Python'da Veri Tipleri

İlk veri sınıfımıza bakış

from dataclasses import dataclass
@dataclass
class Cookie:
    name: str
    quantity: int = 0
chocolate_chip = Cookie("chocolate chip", 13)
print(chocolate_chip.name)
print(chocolate_chip.quantity)
chocolate chip
13
Python'da Veri Tipleri

Kolay tuple veya sözlük dönüşümü

from dataclasses import asdict, astuple

ginger_molasses = Cookie("ginger molasses", 8)
asdict(ginger_molasses)
{'name': 'ginger molasses', 'quantity': 8}
astuple(ginger_molasses)
('ginger molasses', 8)
Python'da Veri Tipleri

Özel özellikler

from decimal import Decimal


@dataclass
class Cookie:
    name: str
    cost: Decimal
    quantity: int
   @property
   def value_of_goods(self):
      return int(self.quantity) * self.cost
Python'da Veri Tipleri

Özel özellikleri kullanma

peanut = Cookie("peanut butter", Decimal("1.2"), 8)

peanut.value_of_goods
Decimal('9.6')
Python'da Veri Tipleri

Dondurulmuş örnekler

@dataclass(frozen=True)
class Cookie:
    name: str
    quantity: int = 0

c = Cookie("chocolate chip", 10)
c.quantity = 15
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 4, in __setattr__
dataclasses.FrozenInstanceError: cannot assign to field 'quantity'
Python'da Veri Tipleri

Hadi pratik yapalım!

Python'da Veri Tipleri

Preparing Video For Download...