Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dictionaries

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-15T08:36:36.18774Z

Updated

2026-07-15T08:36:36.18774Z

dictionary={
    "a":1.1,
    "b":2,
    "c":"string",
    "d":False,
    "e":[1,2,3,4,5,6]
}
print(dictionary["e"])

# list1=[{"a":1.1,
#         "b":2,
#         "c":[1,2,3]
    
# },

# {"a":1.3,
#  "b":3,
#  "c":[3,6,9]
    
# }
#         ]
# print(list1[0]["c"][0])
INFO