Python中的分数运算

Posted 枫桥宇

tags:

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

Python中的分数运算,在Python标准库fractions中的Fraction对象支持分数运算。具体操作如下:

在windows下,通过cmd进到dos shell,输入python3进入到python shell中。

C:\\Users\\Administrator>python3
Python 3.7.0b3 (v3.7.0b3:4e7efa9c6f, Mar 29 2018, 17:46:48) [MSC v.1913 32 bit (
Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from fractions import Fraction
>>> x=Fraction(3,5)
>>> y=Fraction(3,9)
>>> x
Fraction(3, 5)
>>> x.numerator
3
>>> x.denominator
5
>>> x+y
Fraction(14, 15)
>>> x*y
Fraction(1, 5)
>>> x/y
Fraction(9, 5)
>>> x-y
Fraction(4, 15)
>>> x*2
Fraction(6, 5)
>>>

 

以上是关于Python中的分数运算的主要内容,如果未能解决你的问题,请参考以下文章

一日一技:在Python里面做分数的运算

python 分数的数学四则运算

python分数运算使用Fraction模块

python四则运算

基于Python实现的四则运算生成程序

四则运算 Python