小白必看的python中的Bool運算和真假值
在python中,任何物件都可以判斷其真假值:True,False
在if或while條件判斷中,下面的情況值為False:
1.None
2.Flase
3.數值為0的情況,如:0,0.0,0j
4.所有空序列,如:'',(),[]
5.所有空mapping,如:{}
6.instances of user-defined classes, if the class defines a __bool__() or __len__() method,
when that method returns the integer zero or bool value False.
All other values are considered true — so objects of many types are always true.
在運算操作和內建函式返回Boolean結果0或者Flase表示false(更多學習內容,請點選)
1或True表示true
python中的Boolean運算如下:
print('x or y -> if x is false,then y, else x ') x, y= 2,0 print('{} or {} = {}'.format(x, y, xor y)) x1, y1= 0,10 print('{} or {} = {}'.format(x1, y1, x1or y1)) x2, y2= 0,0 print('{} or {} = {}'.format(x2, y2, x2or y2)) print('#' * 50) print('x and y -> if x is false,then x, else y ') print('{} and {} = {}'.format(x, y, xand y)) x1, y1= 0,10 print('{} and {} = {}'.format(x1, y1, x1and y1)) x2, y2= 0,0 print('{} and {} = {}'.format(x2, y2, x2and y2)) print('#' * 50) print('not x -> if x is false,then True,else False ') x= 2 print('not {} = {}'.format(x,not x)) x= 0 print('not {} = {}'.format(x,not x))
執行結果:
>>> x or y -> if x is false,then y, else x or 0 = 2 or 10 = 10 or 0 = 0 ################################################## x and y -> if x is false,then x, else y and 0 = 0 and 10 = 0 and 0 = 0 ################################################## not x -> if x is false,then True,else False not 2 = False not 0 = True >>>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4692/viewspace-2836999/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python中的Boolean運算和真假值PythonBoolean
- python---argparse 解析 bool 值Python
- 圖解計算機中的數值範圍和浮點運算圖解計算機
- js中bool值為false的幾種情況JSFalse
- Python中的自增運算Python
- Python小白必看!新手入門指南Python
- Python學習-算術運算子,賦值運算子和複合運算子Python賦值
- 【Python小白入門必看】Python和VB哪個更簡單?Python
- 初學者Python和C先學哪個好?小白必看!Python
- python3 中 and 和 or 運算規律Python
- 小白入門Python,必看的一些基礎材料Python
- Python的運算物件、運算子、表示式和語句Python物件
- Python2和Python3有何區別?小白入門必看!Python
- PyThon程式設計必看!python加法運算子的用法Python程式設計
- python中精確的浮點數運算Python
- JavaScript中的==運算JavaScript
- Python基礎學習篇-2-數值運算和字串Python字串
- 小白必看的使用http代理ip的基本教程HTTP
- 8.Golang中的運算子-算術運算子、關係運算子、邏輯運算子、賦值運算子Golang賦值
- 【Python入門必看】Python中Cookie和Session的區別與聯絡!PythonCookieSession
- JS中的位運算JS
- Java中的位運算Java
- MySQL小白入門04 - 集合運算MySql
- SQL Server中的集合運算: UNION, EXCEPT和INTERSECTSQLServer
- PPT中插入可以運算和排序的表格技巧排序
- 小白自學Python(五)Python運算子Python
- Python中運算子"=="和"is"的差別分析Python
- Python從零到壹丨影像增強的頂帽運算和底帽運算Python
- 計算機中的浮點運算計算機
- 小白必看,JSBridge 初探JS
- Python中遍歷字典以及字典中的鍵和值Python
- 基於python的集合運算Python
- SCSS 顏色值運算CSS
- SHELL之數值運算
- Java中的"+"運算問題Java
- Numpy中的矩陣運算矩陣
- java中的時間運算Java
- javascript中的時間運算JavaScript