500
The following code opens ‘alice.txt’ and counts the amount of times each letter is printed. However, it contains an error. Which line (7 lines) has the error?
Line 1> f = open('alice.txt', 'r')
Line 2> counterTuple = {'a':0, 'b':0, 'c':0, 'd':0, 'e':0, 'f':0, 'g':0, 'h':0, 'i':0, 'j':0, 'k':0, 'l':0, 'm':0, 'n':0, 'o':0, 'p':0, 'q':0, 'r':0, 's':0, 't':0, 'u':0, 'v':0, 'w':0, 'x':0, 'y':0, 'z':0}
Line 3> for line in f:
Line 4> lowerLine = line.lower()
Line 5> for char in counterTuple:
Line 6> counterTuple[char] = lowerLine.count(char) + counterTuple
Line 7> print counterTuple
What is Line 6?