I am trying to parse some data from a file which has two attributes a first name and country. The file is large and I was trying to store these attributes in a dictionary however this is automatically filtering the key values and I need all the duplicates as I plan to perform operations on the data which involve the duplicate values( simplified example below)
dictionary={"John":"Ireland","John":"Ireland"}
Is there anyway of getting around this ?