标签: python types
my_boolean = bool("Hello") print(my_boolean)
当我在python中运行此代码时,输出为True。这是什么原因?
答案 0 :(得分:1)
因为它检查字符串是否为空: