摘要: Quiver快速入门 装载自:https://github.com/HappenApps/Quiver/wiki/Quiver%E5%BF%AB%E9%80%9F%E5%85%A5%E9%97%A8 Quiver快速入门 装载自:https://github.com/HappenApps/Quive 阅读全文
posted @ 2018-07-18 15:43 Niuli'blog 阅读(6748) 评论(1) 推荐(0) 编辑
摘要: 1 lst = ["皇阿玛", "皇额娘", "容嬷嬷", "紫薇"] 2 # 模拟for循环 3 it = lst.__iter__() 4 while True: 5 try: 6 name = it.__next__() 7 print(name) 8 except StopIteration: # 拿完了 9 break ... 阅读全文
posted @ 2018-07-18 00:04 Niuli'blog 阅读(695) 评论(0) 推荐(0) 编辑