import requests
from collections import Iterable, Iterator
import json
class WeaherIterator(Iterator):
def __init__(self, cities):
self.cities = cities
self.index = 0
def getWeather(self, city):
r = requests.get('
http://wthrcdn.etouch.cn/weather_mini?city=' + city)
data = r.json()['data']['forecast'][0]
return '%s %s, %s' % (city,data['low'], data['high'])
def __next__(self):
if self.index == len(self.cities):
raise StopIteration
city = self.cities[self.index]
self.index += 1
return self.getWeather(city)
class WeaherIterable(Iterable):
def __init__(self,cities):
self.cities = cities
def __iter__(self):
return WeaherIterator(self.cities)
for x in WeaherIterable(['北京','上海', '长沙', '福州', '广州', '长春', '厦门']):
print(x)
WeaherIterable 类到底做了什么 没搞懂 我直接用 WeaherIterator 效果是一样的 。为啥要 WeaherIterable 实例传给 WeaherIterator 呢 视频上是说 这样可以延迟显示 有一个显示一个 但是我看直接用 WeaherIterator 也不是一下子显示出来的 也是一个个出来的 。这个 IMOC 上买的视频 有几节课听的一头雾水 求大神指点
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/411811
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.