python保留三位小数向下取值
#取三位小时---format会四舍五入
b = 0.17777
print("{:.3%}".format(b))
#取三位小时---不四舍五入
# 方法一:
a =12.345666
b = str(a)#转换成字符串
c =b.split('.')#将整数和小数分割
e =c[0] #取列表第一个字符(整数)
f = c[1] #取列表第二个字符(小数)
g = f[0:2] #取第二个字符(小数)的前两位
h = float(e+'.'+g) #字符串拼接,并转换成浮点型
# print(type(b))
print(b)
print(c)
print(e)
print(f)
print(g)
print(type(h))
# 方法二:
# def cut(num, c):
# c=10**(-c)
# return (num//c)*c
#
# print (cut(2.998888888,6))