Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dictionary

Snippet info

Language

Python

Visibility

public

Author

count-francis

Created

2025-09-03T01:31:18.675752Z

Updated

2025-09-03T04:44:48.012499Z

person = {
    'name': 'john',
    'age':[32, 33,34],
    'gender': 'male',
    True:10,
    0:9,
    1:9,
    5:1,
    
    }
print(person[0])
print(person[True])
print(id(person['name']),id(person))
x='age'
print(person['age'][0])
print(person[x])
person=dict([('name','john')])
print(person)
INFO