Phyton Dictionary Örnek Kodu
Phyton`da bir koleksiyon olan dictionary`i daha iyi anlamak ,ne olduğunu ve nasıl kullanıldığını görmek adına örnek bir kod.
sozluk = { "book" : "kitap" , "table": "masa" } sozluk2 = dict(kitap = "book" , masa = "table") sozluk["book"] = "kitap 1" print(sozluk["book"]) sozluk["pencil"]= "kalem" print(sozluk) del(sozluk["book"]) print(sozluk)
Yorumlar
Yorum Gönder
Yorumunuz için teşekkür ederiz, en kısa sürede geri dönüş yapacağız.