Changes to be committed:

This commit is contained in:
2025-12-15 14:26:38 +01:00
parent 7f1c64ed10
commit 3c00ce57e7
10 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# program r1_03_sekwencje_dict.py
# Wyjątek przy odwoływaniu się do elementów słownika
slownik = {1: "Adam", 2: "Jurkiewicz", "S": "Linux"}
print(slownik)
print(type(slownik))
print("-------------------------------")
print("Badanie elementów: słownik")
print(len(slownik))
print(slownik[1])
print(slownik["S"])
print(slownik[4])