-8

我无法理解如何做到这一点。这样做的目的是对该函数进行不同的模块调用,使其返回正确的 url,然后将其下载并从中提取内容。

getQuery(location)返回包含 GET 查询的 URL,以从 wunderground.com 检索给定位置的天气。

例如,getQuery('Princeton, WV')返回 URL

http://www.wunderground.com/cgi-bin/findweather/hdfForecast?query=Princeton%2C+WV
4

1 回答 1

2
def getQuery(location):
   # return your root url plus the location encoded using quote_plus
   # http://docs.python.org/2/library/urllib.html#urllib.quote_plus
   pass
于 2013-04-14T23:24:03.607 回答