python 迭代python中的一小部分中的数字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 迭代python中的一小部分中的数字相关的知识,希望对你有一定的参考价值。

from generators import loop 

def iter_div(top, bottom):
    ''' iterate numbers in fractions '''
    cur_rem = lambda a,b:(a/b,a%b)
    current, remainder = cur_rem(top,bottom)
    # yield digits before the decimal
    for i in map(int, str(current)):
        yield i
    # yield the digits after the decimal
    for _ in loop():
        current, remainder = cur_rem(remainder*10, bottom)
        yield current

pi = iter_div(22, 7)
for i in range(10):
    print(next(pi))

以上是关于python 迭代python中的一小部分中的数字的主要内容,如果未能解决你的问题,请参考以下文章

python 迭代python中的分数十进制形式的数字

二叉搜索树迭代 java实现以及python实现

二叉搜索树迭代 java实现以及python实现

二叉搜索树迭代 java实现以及python实现

二叉搜索树迭代 java实现以及python实现

如何更有效地迭代python中的列表?