python 中的int()函数怎么用


Posted in Python onOctober 17, 2017

int(x, [base])

功能:

函数的作用是将一个数字或base类型的字符串转换成整数。

函数原型:

int(x=0)
int(x, base=10),base缺省值为10,也就是说不指定base的值时,函数将x按十进制处理。

适用Python版本:

Python2.x
Python3.x

注意:

1. x 可以是数字或字符串,但是base被赋值后 x 只能是字符串
2. x 作为字符串时必须是 base 类型,也就是说 x 变成数字时必须能用 base 进制表示

Python英文文档解释:

class int(x=0)
class int(x, base=10)
Return an integer object constructed from a number or string x, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero.
If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in radix base. Optionally, the literal can be preceded by + or - (with no space in between) and surrounded by whitespace. A base-n literal consists of the digits 0 to n-1, with a to z (or A to Z) having values 10 to 35. The default base is 10. The allowed values are 0 and 2?36. Base-2, -8, and -16 literals can be optionally prefixed with 0b/0B, 0o/0O, or 0x/0X, as with integer literals in code. Base 0 means to interpret exactly as a code literal, so that the actual base is 2, 8, 10, or 16, and so that int('010', 0) is not legal, while int('010') is, as well as int('010', 8).
The integer type is described in Numeric Types — int, float, complex.
Changed in version 3.4: If base is not an instance of int and the base object has a base.__index__ method, that method is called to obtain an integer for the base. Previous versions used base.__int__ instead of base.__index__.
Changed in version 3.6: Grouping digits with underscores as in code literals is allowed.

代码实例:

1. x 是数字的情况:

int(3.14)      # 3
int(2e2)       # 200
int(100, 2)     # 出错,base 被赋值后函数只接收字符串

2. x 是字符串的情况:

int('23', 16)   # 35
int('Pythontab', 8)   # 出错,Pythontab不是个8进制数

3. base 可取值范围是 2~36,囊括了所有的英文字母(不区分大小写),十六进制中F表示15,那么G将在二十进制中表示16,依此类推....Z在三十六进制中表示35

int('FZ', 16)   # 出错,FZ不能用十六进制表示
int('FZ', 36)   # 575

4. 字符串 0x 可以出现在十六进制中,视作十六进制的符号,同理 0b 可以出现在二进制中,除此之外视作数字 0 和字母 x

int('0x10', 16) # 16,0x是十六进制的符号
int('0x10', 17) # 出错,'0x10'中的 x 被视作英文字母 x
int('0x10', 36) # 42804,36进制包含字母 x

总结

以上所述是小编给大家介绍python 中的int()函数,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Python 相关文章推荐
django自定义Field实现一个字段存储以逗号分隔的字符串
Apr 27 Python
Python类方法__init__和__del__构造、析构过程分析
Mar 06 Python
Python实现简单截取中文字符串的方法
Jun 15 Python
教你用Type Hint提高Python程序开发效率
Aug 08 Python
python中numpy基础学习及进行数组和矢量计算
Feb 12 Python
Python 3中print函数的使用方法总结
Aug 08 Python
python爬虫基本知识
Mar 05 Python
基于python list对象中嵌套元组使用sort时的排序方法
Apr 18 Python
Sanic框架流式传输操作示例
Jul 18 Python
Python基于matplotlib画箱体图检验异常值操作示例【附xls数据文件下载】
Jan 07 Python
Python使用matplotlib绘制圆形代码实例
May 27 Python
torchxrayvision包安装过程(附pytorch1.6cpu版安装)
Aug 26 Python
python遍历序列enumerate函数浅析
Oct 17 #Python
浅谈python中的正则表达式(re模块)
Oct 17 #Python
深入理解Django的自定义过滤器
Oct 17 #Python
Python引用类型和值类型的区别与使用解析
Oct 17 #Python
利用python批量修改word文件名的方法示例
Oct 17 #Python
Django内容增加富文本功能的实例
Oct 17 #Python
Python通过future处理并发问题
Oct 17 #Python
You might like
php生成WAP页面
2006/10/09 PHP
PHP面向对象编程快速入门
2006/12/14 PHP
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
2014/06/23 PHP
用php代码限制国内IP访问我们网站
2015/09/26 PHP
php array_walk 对数组中的每个元素应用用户自定义函数详解
2016/11/18 PHP
用javascript父窗口控制只弹出一个子窗口
2007/04/10 Javascript
jQuery中需要注意的细节问题小结
2011/12/06 Javascript
fancybox modal的完美解决(右上的X)
2012/10/30 Javascript
javascript截取字符串(通过substring实现并支持中英文混合)
2013/06/24 Javascript
js猜数字小游戏的简单实现代码
2013/07/02 Javascript
Jquery方式获取iframe页面中的 Dom元素
2014/05/07 Javascript
JS加载器如何动态加载外部js文件
2016/05/26 Javascript
Node.js Addons翻译(C/C++扩展)
2016/06/12 Javascript
xmlplus组件设计系列之网格(DataGrid)(10)
2017/05/05 Javascript
JavaScript原型对象、构造函数和实例对象功能与用法详解
2018/08/04 Javascript
微信小程序实现列表页的点赞和取消点赞功能
2018/11/02 Javascript
jQuery实现文本显示一段时间后隐藏的方法分析
2019/06/20 jQuery
Python模块学习 filecmp 文件比较
2012/08/27 Python
解决python3运行selenium下HTMLTestRunner报错的问题
2018/12/27 Python
opencv调整图像亮度对比度的示例代码
2019/09/27 Python
java关于string最常出现的面试题整理
2021/01/18 Python
HTML+CSS3模拟心的跳动实例代码
2017/09/05 HTML / CSS
Paradigit比利时电脑卖场:购买笔记本、电脑、平板和外围设备
2016/11/28 全球购物
GoPro摄像机美国官网:美国运动相机厂商
2018/07/03 全球购物
您在慕尼黑的跑步商店:Lauf-bar
2019/10/11 全球购物
Berghaus官网:户外服装和设备,防水服
2020/01/17 全球购物
《果园机器人》教学反思
2014/04/13 职场文书
护士优质服务演讲稿
2014/08/26 职场文书
2015年中个人总结范文
2015/03/10 职场文书
材料采购员岗位职责
2015/04/03 职场文书
2016年“六一儿童节”校园广播稿
2015/12/17 职场文书
十二月早安励志心语大全
2019/12/03 职场文书
JavaScript与JQuery框架基础入门教程
2021/07/15 Javascript
TV动画《神废柴☆偶像》公布先导PV
2022/03/20 日漫
MySQL范围查询优化的场景实例详解
2022/06/10 MySQL
Win11 KB5015814遇安装失败 影响开始菜单性能解决方法
2022/07/15 数码科技