Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dictionary Methods 2

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-18T07:02:18.585427Z

Updated

2026-07-18T07:02:18.585427Z

user={
    "basket":[1,2,3],
    "greet":"hello",
    "age":20
    
    
    
    
}

print(user.update({"age":55}))
print(user)



INFO