Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dict01

Snippet info

Language

Python

Visibility

public

Author

kwahmail

Created

2025-09-03T13:29:29.537435Z

Updated

2025-09-03T13:39:38.715845Z

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