I am not that experienced in python so it might be the case that I am missing something which is already there.. But it would be great if anyone can help me sort this out. I have a nested dictionary which is something of the following form: Main dictionary has key: userid then in this the particular user has rated (maybe) 20 different products So the nested dictionary has a key: product id and value is the rating I am reading these from a file: where the first word is user id, second word is movie id: and the third word is rating
dataDict={}
innerDict = {}
for line in myFile:
words = line.strip().split()
userId = words[0]
movieId = words[1]
rating = words[2]
innerDict[movieId] = rating
dataDict[userId] = (innerDict)
innerDict = {}
But clearly the line innerDict[userId] = innerDict will create a new (instead of appending it to the last one..) The way I have written API, I have to work with these datastructures only.. (no appending to the list) it has to be a nested dictionary only.. Thanks
innerDictright after creating it.dataDict[userId]will then contain an empty dict... – Tim Pietzcker Sep 8 '11 at 16:39