python中mod函数的使用方法(详解Python3中ceil函数用法)
类别:脚本大全 浏览量:1333
时间:2022-01-27 01:27:48 python中mod函数的使用方法
详解Python3中ceil函数用法描述
ceil(x) 函数返回一个大于或等于 x 的的最小整数。
语法
以下是 ceil() 方法的语法:
|
import math math.ceil( x ) |
注意:ceil()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
参数
x -- 数值表达式。
返回值
函数返回返回一个大于或等于 x 的的最小整数。
实例
以下展示了使用 ceil() 方法的实例:
|
#!/usr/bin/python3 import math # 导入 math 模块 print ( "math.ceil(-45.17) : " , math.ceil( - 45.17 )) print ( "math.ceil(100.12) : " , math.ceil( 100.12 )) print ( "math.ceil(100.72) : " , math.ceil( 100.72 )) print ( "math.ceil(math.pi) : " , math.ceil(math.pi)) |
以上实例运行后输出结果为:
|
math.ceil( - 45.17 ) : - 45 math.ceil( 100.12 ) : 101 math.ceil( 100.72 ) : 101 math.ceil(math.pi) : 4 |
python 向上取整ceil 向下取整floor 四舍五入round
|
#encoding:utf-8 import math #向上取整 print "math.ceil---" print "math.ceil(2.3) => " , math.ceil( 2.3 ) print "math.ceil(2.6) => " , math.ceil( 2.6 ) #向下取整 print "\nmath.floor---" print "math.floor(2.3) => " , math.floor( 2.3 ) print "math.floor(2.6) => " , math.floor( 2.6 ) #四舍五入 print "\nround---" print "round(2.3) => " , round ( 2.3 ) print "round(2.6) => " , round ( 2.6 ) #这三个的返回结果都是浮点型 print "\n\nnote:every result is type of float" print "math.ceil(2) => " , math.ceil( 2 ) print "math.floor(2) => " , math.floor( 2 ) print "round(2) => " , round ( 2 ) |
运行结果:
您可能感兴趣
- mysqljson字段查询(Mysql 查询JSON结果的相关函数汇总)
- mysql查询count很慢(MySQL COUNT函数的使用与优化)
- vue封装一个功能函数(vue中利用mqtt服务端实现即时通讯的步骤记录)
- sql怎么查询字段合并(SQL函数将某个字段合并在一起的操作)
- python中怎么查看函数的用法(Python中函数的基本定义与调用及内置函数详解)
- php中数组使用技巧(php常用经典函数集锦数组、字符串、栈、队列、排序等)
- sql server 新函数(SQL Server分隔函数实例详解)
- vue如何加速(vue函数防抖与节流的正确使用方法)
- python函数大全详细(详解Python函数式编程—高阶函数)
- php 日志监控(php日志函数error_log用法实例分析)
- php表单上传文件功能(PHP单文件上传原理及上传函数的封装操作示例)
- python中mod函数的使用方法(详解Python3中ceil函数用法)
- SQL中的cast()函数
- yii2对比springboot(Yii框架函数简单用法分析)
- php中row函数(PHP中number_format函数的用法讲解)
- linux中输出和追加命令(linux驱动开发中常用函数copy_from_user open read write详解)
- 美国数十万加仑牛奶倒入下水道,贫民区食不果腹,历史再次重演(美国数十万加仑牛奶倒入下水道)
- 美国倒掉数十万加仑牛奶 上热搜第一,这一幕似曾相识(美国倒掉数十万加仑牛奶)
- 深度 倒牛奶 这一幕为何又在美国上演(深度倒牛奶)
- 美国数十万加仑牛奶倒下水道怎么回事 原因曝光令人心痛(美国数十万加仑牛奶倒下水道怎么回事)
- 探索中国神秘文字(探索中国神秘文字)
- 重温《蜗居》 宋思明选中海藻为红颜知己,纯属巧合,与爱无关(宋思明选中海藻为红颜知己)
热门推荐
- Python HTML解析器BeautifulSoup用法实例详解【爬虫解析器】(Python HTML解析器BeautifulSoup用法实例详解爬虫解析器)
- django 后台管理office文件(django admin后台添加导出excel功能示例代码)
- python程序开发过程(python调用外部程序的实操步骤)
- pythonselenium自动化教程(python使用selenium实现批量文件下载)
- mysql怎么看脱机数据(MYSQL电话号码,身份证数据脱敏的实现)
- 织梦cms怎么设置页面(织梦CMS调用问答栏目文章到首页实现方法分享)
- docker容器退出错误码的步骤(docker容器退出错误码的步骤)
- 新手如何搭建ftp服务器(ftp服务器想要在外网中访问怎么搭建)
- docker实战部署(使用docker搭建一套开发环境全家桶的详细教程)
- springbootvue数据交互系统(Springboot运用vue+echarts前后端交互实现动态圆环图)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9