【说站】python int返回的方法探究
2024-11-13
4
python int返回的方法探究
1、int额外的方法:
int.bit_length()
返回二进制表示整数所需的位数,不包括符号位和前面的零:
>>> n = -37 >>> bin(n) '-0b100101' >>> n.bit_length() 6
2、返回表示整数的字节组。
(1024).to_bytes(2, byteorder='big') b'\x04\x00' (1024).to_bytes(10, byteorder='big') b'\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00' (-1024).to_bytes(10, byteorder='big', signed=True) b'\xff\xff\xff\xff\xff\xff\xff\xff\xfc\x00' x = 1000 x.to_bytes((x.bit_length() + 7) // 8, byteorder='little') b'\xe8\x03'
以上就是python int返回的方法探究,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1天前赞一波!
相关文章
- 【说站】python如何读取大文件
- 【说站】python字典合并特性是什么
- 【说站】python字典合并有哪些规范?
- 【说站】python Faust流处理库的介绍
- 【说站】java多线程有几种实现方法
- 【说站】python如何建立web服务
- 【说站】Python中GC算法是什么
- 【说站】python逻辑值检测如何实现
- 【说站】java反射获取对象的方法
- 【说站】python indent如何打印JSON数据
- 【说站】java8中的四种方法引用
- 【说站】python如何追写内容
- 【说站】python的浮点数占多少个字节
- 【说站】python反向输出数字
- 【说站】python中__file__属性的使用
- 【说站】python输入三个数求平均值
- 【说站】python提取字符串指定内容
- 【说站】python将数字转化为汉字
- 【说站】python快捷键
- 【说站】python交换两个变量的值
文章评论
评论问答