I'm creating a program that reads through a .txt file of names (lastname,firstname), one per line, and creates a dictionary that shows the number of times a specific first name repeats.
I've gotten the follow code so far but can't seem to accurately count the number of times a first name repeats. I think the problem is that my variable "value" doesn't correspond to the actual value in the key value pair. How can I fix that?
file = open('names.txt')
dict = {}
value = 1
for line in file:
listOfNames = line.split(",")
firstName = listOfNames[1]
if dict.has_key(firstName):
value += 1
else:
dict[firstName] = value
file.close()