Created
April 25, 2022 11:16
-
-
Save zinzinzibidi/818c7199b765976de9fb5e9377a632aa to your computer and use it in GitHub Desktop.
Dictionary Data Type Uygulama 03 Yanıt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dict = { | |
'z1' : 440, | |
'z2' : 500, | |
'z3' : 600 | |
} | |
dict.update({'z2': 700}) | |
print(dict) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment