Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dictionary Keys

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-08T20:28:51.96135Z

Updated

2025-11-08T20:28:51.96135Z

#Dictionary Keys
dicti = {
    123 : 'a',
    True : 'hello',
    123 : 'b'       # Overwrite
}


print(dicti[123])
INFO