摘要:
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 阅读全文
摘要:
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 ... 阅读全文