共计 226 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以通过以下两种方式来定义 bool 变量:
1、直接赋值给变量:
is_true = True
is_false = False
2、使用 bool() 函数将其他数据类型转换为 bool 类型:
num = 10
is_zero = bool(num)
print(is_zero) # Output: True
empty_list = []
is_empty = bool(empty_list)
print(is_empty) # Output: False
丸趣 TV 网 – 提供最优质的资源集合!
正文完