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

Posted

tags:

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

from generators import loop

def iter_division(top, bottom):
    ''' iterate digits in a fraction's decimal form '''
    current, remainder = top/bottom, 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 = (remainder*10)/bottom, (remainder*10)%bottom
        yield current

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

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

python3 内置函数

python学习之- 内置函数

Python之路24-内置函数匿名函数

python分数运算使用Fraction模块

Python内置函数总结

Python内置函数总结