zoukankan      html  css  js  c++  java
  • python中float类型小数点截取两种方法

    练习:

    输出你的身体指标:

    身高:170

    体重50.5

    BMI指数:50.5/(170+50.5)

    从上面可以看出,BMI指数是fload类型,如果需要保留两位小数,有两种写法

    第一种写法,使用round()函数

    #输出你的身体指标
    height=170
    weight=50.5
    bmi=weight/(height+weight)
    print('您的身高是:'+str(height))
    print('您的体重是:'+str(weight))
    print('您的BMI指数是:'+str(round(bmi,2)))
    

      执行结果:

    第二种写法,使用format函数,代码如下:

    #输出你的身体指标
    height=170
    weight=50.5
    bmi=weight/(height+weight)
    print('您的身高是:'+str(height))
    print('您的体重是:'+str(weight))
    print('您的BMI指数是:'+'{:0.2f}'.format(bmi))
    

      执行结果:

    综上所述,round函数和format函数都可以对float类型的数据进行截取

  • 相关阅读:
    复利计算-做汉堡,结对2.0-复利计算再升级
    java集合
    java 封装,继承,多态基础
    购物车
    ajax
    演示
    实验四
    实验三
    构建之法6-7章读后感
    作业调度模拟程序
  • 原文地址:https://www.cnblogs.com/wx170119/p/14998675.html
Copyright © 2011-2022 走看看