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

Python中的分数运算

时间:2018-06-22 20:00:19      阅读:1184      评论:0      收藏:0      [点我收藏+]

标签:技术分享   Python标准库   its   cmd   rac   bubuko   dmi   edit   for   

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标准库   its   cmd   rac   bubuko   dmi   edit   for   

原文地址:https://www.cnblogs.com/zhn620/p/9215254.html

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