码迷,mamicode.com
首页 > 编程语言 > 详细

python 迭代器

时间:2018-01-23 00:49:42      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:col   coding   while   amount   div   ali   span   blog   post   

#!/usr/bin/env python 
# -*- coding: utf-8 -*-
# @Time : 2018-01-22 22:09
# @Author : hhj
# @Site :
# @File :
def cash_money(amount):
while amount>0
amount -=100
yield 100

print("又来取钱了")


atm = cash_money(500)
print(type(atm)) #不调取迭代器
print(atm.__next__()) #第一次调取迭代器 返回100。不执行 print("又来取钱了")
print(atm.__next__()) #第二次从print("又来取钱了")执行,再执行while amount>0。。。到 yield 100返回100
print("去玩会") #不执行
print(atm.__next__()) #第三次执行从print("又来取钱了")执行,再执行while amount>0。。。到 yield 100返回100

python 迭代器

标签:col   coding   while   amount   div   ali   span   blog   post   

原文地址:https://www.cnblogs.com/hhjwqh/p/8331512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!