#Khai báo một Dictionary
listseafoods = {
"grab":"Cua bien hap bia sa",
"fish":"Ca song om dua",
"lobster":"Tom hum bo lo phomai",
"oc":"Oc huong sot me",
"shirmp":"Chao tom cang xanh",
"squid":"Muc ong xao can toi tay"
}
#Duyệt qua danh sách key-value của Dictionary
for key in listseafoods:
print(key, listseafoods[key])
#Kiểm tra xem key "octopus" có tồn tại trong Dictionary hay không
print("octopus" in listseafoods)
#Kiểm tra xem key "lobster" có tồn tại trong Dictionary hay không
print("lobster" in listseafoods)
#In ra tổng số lượng phần tử trong Dictionary
print("Size = " + str(len(listseafoods)))