我正在使用Python库Wikipedia API来解析来自Wikipedia的数据。我正在获取TypeError on count函数。
代码如下:
import wikipedia
'Searching Wikipedia for List of Lexus vehicle
print ("1: Searching Wikipedia for 'List of Lexus vehicles'")
try:
print (wikipedia.page('List of Lexus'))
print ('-' * 60)
except wikipedia.exceptions.DisambiguationError as e:
print (str(e))
print ('+' * 60)
print ('DisambiguationError: The page name is ambiguous')
print搜索雷克萨斯汽车:
print ("2: Searching Wikipedia for 'List of Lexus (vehicles)'")
print (wikipedia.page('List of Lexus_(vehicles)'))
print打印结果:
result = wikipedia.page('List of Lexus_(vehicles)').content.encode('UTF8')
print ("3: Result of searching Wikipedia for 'List of Lexus vehicles_(vehicles)':")
print (result)
printCount函数:
def lexus_count(vehicles):
lexus_count = result.count(vehicles)
print
print ("The Wikipedia page for 'List of Lexus_(vehicles)' has " + \
"{} occurrences of the word 'Lexus'".format(lexus_count()))
print以下是TypeError消息:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
D:\College\Python\Labs\lab 3\kaminski_lab3_p2.py in <module>()
30
31 print ("The Wikipedia page for 'List of Lexus_(vehicles)' has " + \
---> 32 "{} occurrences of the word 'Lexus'".format(lexus_count()))
33 print
TypeError: lexus_count() missing 1 required positional argument: 'vehicles'现在我遇到了新的问题NameError:
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
D:\College\Python\Labs\lab 3\kaminski_lab3_p2.py in <module>()
30
31 print ("The Wikipedia page for 'List of Lexus_(vehicles)' has " + \
---> 32 "{} occurrences of the word 'Lexus'".format(lexus_count(vehicles)))
33 print
NameError: name 'vehicles' is not defined更新输出中不可读的输出部分:
The Wikipedia page for 'List of Lexus_(vehicles)' has <function lexus_count at 0x000002431D2B28C8> occurrences of the word 'Lexus'发布于 2017-02-25 03:22:57
lexus_count()接受参数载体,但您忘记将其传递给第32行的函数
https://stackoverflow.com/questions/42446584
复制相似问题