This is my program to append list value into dictionary
lis=['a','b','c']
st=['d','e']
count=0
f={}
for s in st:
lis.append(s)
f[count]=lis
count+=1
print f
my expected output is
{0: ['a', 'b', 'c', 'd'], 1: ['a', 'b', 'c', 'd', 'e']}
but i got
{0: ['a', 'b', 'c', 'd', 'e'], 1: ['a', 'b', 'c', 'd', 'e']}
as output. Please help me to solve this. Thanks in advance.