This commit is contained in:
Chizuui
2025-11-27 00:38:38 +07:00
parent 5444efab13
commit 1795fa1c2f
81 changed files with 1893 additions and 0 deletions

7
Acara-13/nasted.py Normal file
View File

@@ -0,0 +1,7 @@
# Membuat nested set
nested_set = {10, 'SMK', ('RPL', 'TKJ', 'MM'), (1, 2)}
print(nested_set)
# Mengakses elemen dalam nested set
for item in nested_set:
print(item)