Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dict

Snippet info

Language

Python

Visibility

public

Author

kwahmail

Created

2025-09-03T13:22:01.892563Z

Updated

2025-09-03T13:22:01.892563Z

person={"name":"john",
        "age":32,
        "gender":"male"
}
print(person)
person["name"]="peter"
x='age'
person[x]=10
print(person)
        
INFO