Quick actions

cmd+k|ctrl+k

Navigation

Languages

List, Dictionary

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-09-12T13:03:54.743952Z

Updated

2024-09-12T13:17:28.671436Z

a={"food":"apple"}
a["toy"]="bear"
print(a)
b=[1,2,3]
b.append(4)
print(b)
apple=[1,2,[2,(3,4)],[5,6,7],{"food":["a","b","c"],"toy":"bear"},9,[0,1,2]]
print(apple[2][1][1])
a=tuple()
print(type(a))
INFO