How to convert csv to dictionary of dictionaries in python?
问题 I have a CSV file shown below.I need to convert CSV to dictionary of dictionaries using python. userId movieId rating 1 16 4 1 24 1.5 2 32 4 2 47 4 2 50 4 3 110 4 3 150 3 3 161 4 3 165 3 The output should be like shown below dataset={'1':{'16':4,'24':1.5}, '2':{'32':4,'47':4,'50':4}, '3':{'110':4,'150':3,'161':4,'165':3}} Please let me know how to do this. Thanks in advance 回答1: You are looking for nested dictionaries . Implement the perl's autovivification feature in Python (the detailed