. , . , . , . , , item = ["Ford pickup", 1993, 9995], , - :
ikey = tuple(item[0], item[1])
idata = item[2]
db[ikey] = idata
, , Python. , . , , , .
a = [1,"fred",7.3]
b = []
b.append(1)
b[0] = "fred"
b.append(a)
, , . , , . , , , dict . Python Cookbook .
c = {}
d = ("ford pickup",1993)
c[d] = 9995
, , . . , , .
Python.