2

对于这个程序,我试图让用户在文件中输入尽可能多的文本,并让程序计算存储在该文件中的单词总数。例如,如果我输入“嗨,我喜欢吃蓝莓派”,程序应该总共读到 7 个单词。该程序运行良好,直到我输入选项 6,它计算字数。我总是得到这个错误:'str'对象没有属性'items'

#Prompt the user to enter a block of text.
done = False
textInput = ""
while(done == False):
    nextInput= input()
    if nextInput== "EOF":
        break
    else:
        textInput += nextInput

#Prompt the user to select an option from the Text Analyzer Menu.
print("Welcome to the Text Analyzer Menu! Select an option by typing a number"
    "\n1. shortest word"
    "\n2. longest word"
    "\n3. most common word"
    "\n4. left-column secret message!"
    "\n5. fifth-words secret message!"
    "\n6. word count"
    "\n7. quit")

#Set option to 0.
option = 0

#Use the 'while' to keep looping until the user types in Option 7.
while option !=7:
    option = int(input())

    #I get the error in this section of the code.
    #If the user selects Option 6, print out the total number of words in the
    #text.
    elif option == 6:
        count = {}
        for i in textInput:
            if i in count:
                count[i] += 1
            else:
                count[i] = 1
        #The error lies in the for loop below. 
        for word, times in textInput.items():
            print(word , times)
4

2 回答 2

6

这里的问题是它textInput是一个字符串,所以它没有items()方法。

如果你只想要单词的数量,你可以尝试使用 len:

print len(textInput.split(' '))

如果你想要每个单词,以及它们各自的出现,你需要使用count而不是textInput

    count = {}
    for i in textInput.split(' '):
        if i in count:
            count[i] += 1
        else:
            count[i] = 1
    for word, times in count.items():
        print(word , times)
于 2013-07-14T23:29:32.130 回答
0

要计算单词的总数(包括重复),可以使用这个单行,其中 file_path 是文件的绝对路径:

sum(len(line.split()) for line in open(file_path))
于 2017-08-29T11:51:17.710 回答