I am pretty new to python, but I know the basic commands. I am trying to create a for loop which, when given a list of sentences, adds a key for the length of each sentence. The value of each key would be the frequency of that sentence length in the list, so that the format would look something like this:
dictionary = {length1:frequency, length2:frequency, etc.}
I can't seem to find any previously answered questions that deal with this specifically - creating keys using basic functions, then changing the key's value by the frequency of that result. Here is the code I have:
dictionary = {}
for i in sentences:
dictionary[len(i.split())] += 1
When I try to run the code, I get this message:
Traceback (most recent call last):
File "<pyshell#11>", line 2, in <module>
dictionary[len(i.split())] += 1
KeyError: 27
Any help fixing my code and an explanation of where I went wrong would be so appreciated!