Python 为什么value=string

Python 为什么value=string,python,Python,Python2运行时 需要帮助调试吗 非常感谢 不使用BeautifulSoup的简单方法是: import requests as req def urls(topic): urls("tacos") 输出: import requests as req def getTopicCount(topic): resp = req.request(method='GET', url="https://en.wikipedia.org/w/api.php?action=parse&

Python2运行时

需要帮助调试吗


非常感谢

不使用BeautifulSoup的简单方法是:

import requests as req

def urls(topic):


urls("tacos")
输出:

import requests as req

def getTopicCount(topic):
    resp = req.request(method='GET', url="https://en.wikipedia.org/w/api.php?action=parse&section=0&prop=text&format=json&page=%s" % (topic))
    print "Total Occurrence",resp.json()["parse"]["text"]["*"].count(topic)

getTopicCount("train")

您可以使用beautifulsoup来实现您的结果
Total Occurrence 24