python学习笔记——数值
摘要:
获取圆周率不同的精度import mathfor precision in range(10): print round(math.pi,precision)int,round,math.floor的不同之处函数int()直接截去小数部分,返回整型。函数floor()得到最接近原数但小于原数的浮点数函数round()接四舍五入的方式取精确度,返回浮点数。import mathfor n in (.2, .7, 1.2, 1.7, -.2, -.7, -1.2 ,-1.7): print "int(%.1f)\t%+.1f" % (n, int(n)) print " 阅读全文
posted @ 2011-06-17 10:10 司徒正美 阅读(1273) 评论(0) 推荐(0) 编辑