python中bool值

来源:互联网 发布:毕业后悔做程序员 编辑:程序博客网 时间:2024/05/21 20:29

1.在数值上下文环境中,True被当作1,False被当作0,例如 True+3=>4

2.其他类型值转换bool值时除了''、""、''''''、""""""、0、()、[]、{}、None、0.0、0L、0.0+0.0j、False为False,其他都为True 例如 bool(-2)=>True










转自 http://blog.csdn.net/fei_gao/article/details/5914759

0 0