程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

In Python, what object Boolean value is false and what object Boolean value is true [you can use the built-in function bool() to judge the Boolean value of an object]

編輯:Python

stay Python in , Except that the Boolean values of the following objects are False, Everything else is True.

  • The object is empty 、 such as []、()、{}、‘’
  • The object is False
  • The object is 0
  • The object is None

You can use built-in functions bool() Determine the Boolean value of an object , The sample code is as follows :

bool1 = bool([])
bool2 = bool(())
bool3 = bool({
})
bool3 = bool('')
bool4 = bool(False)
bool5 = bool(0)
bool5 = bool(None)
bool6 = bool(-5)
bool7 = bool(6)
bool8 = bool(7.5)
bool9 = bool('su')

The operation results are as follows :


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved