int整数和bool值

Posted Bruce.yin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int整数和bool值相关的知识,希望对你有一定的参考价值。

# ########################################## int 整数 ##########################################

# 1. 当前整数的二进制表示,最少位数
# age = 4 # 100
# print(age.bit_length())

# 2. 获取当前数据的字节表示
# age = 15
# v = age.to_bytes(10,byteorder=‘big‘)
# v = age.to_bytes(10,byteorder=‘little‘)
# print(v)
# 00000000 00001111 -> 15

# ########################################## bool 布尔值 ##########################################
# v = 0 # 1,-1
# v = ""
# v = []
# --> 空内容:False

 

以上是关于int整数和bool值的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 - Golang 实现集合操作

python notice2

Python Bool 和 int 比较以及使用布尔值对列表进行索引

Python Bool和int比较以及带有布尔值的列表索引

python---数据类型(int,float,bool,complex),容器类型的基本认识

内置函数