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

python 取两数的百分比

时间:2016-11-08 09:47:04      阅读:357      评论:0      收藏:0      [点我收藏+]

标签:class   for   4.4   int   type   linux   print   ati   inf   

 

Python 2.6.6 (r266:84292, Jan 22 2014, 09:42:36) 
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 6601/7869
0
>>> a = float(6601)
>>> b = float(7869)
>>> print a/b
0.838861354683
>>> print "%.3f" % (a/b)
0.839
>>> print "%.2f" % (a/b)
0.84

 

python 取两数的百分比

标签:class   for   4.4   int   type   linux   print   ati   inf   

原文地址:http://www.cnblogs.com/bass6/p/pthon.html

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