我无法理解如何做到这一点。这样做的目的是对这个函数进行不同的模块调用,让它返回正确的url,这个url将被下载并从中提取出来。
getQuery(location)
返回包含GET查询的网址,以便从wunderground.com检索指定位置的天气。
例如,getQuery('Princeton, WV')
会返回网址
http://www.wunderground.com/cgi-bin/findweather/hdfForecast?query=Princeton%2C+WV
答案 0 :(得分: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