中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中布爾表達式怎么用

發布時間:2021-10-27 17:31:33 來源:億速云 閱讀:290 作者:小新 欄目:編程語言

小編給大家分享一下Python中布爾表達式怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

1、布爾表達式的概念

條件語句和循環語句都使用布爾表達式作為條件。布爾值為真或假,以FalseTrue表示,前面經常使用布爾表達式比較兩個值,如:while x>=0 

2、邏輯問題演示

True and True

False and True

1 == 1 and 2 == 1

"test" == "test"

1 == 1 or 2 != 1

True and 1 == 1

False and 0 != 0

True or 1 == 1

"test" == "testing"

1 != 0 and 2 == 1

"test" != "testing"

"test" == 1

not (True and False)

not (1 == 1 and 0 != 1)

not (10 == 1 or 1000 == 1000)

not (1 != 10 or 3 == 4)

not ("testing" == "testing" and "Zed" == "Cool Guy")

1 == 1 and (not ("testing" == 1 or 1 == 0))

"chunky" == "bacon" and (not (3 == 4 or 3 == 3))

3 == 3 and (not ("testing" == "testing" or "Python" == "Fun"))

所有的布爾邏輯表達式都可以用下面的簡單流程得到結果:

1)找到相等判斷的部分 ( == 或者 != ),將其改寫為其最終值 ( True False )

2)找到括號里的 and/or ,先算出它們的值。

3)找到每一個 not ,算出他們反過來的值。

4)找到剩下的 and/or ,解出它們的值。

5)等你都做完后,剩下的結果應該就是 True 或者 False 了。

下面我們以20行的邏輯表達式演示一下:

3 != 4 and not ("testing" != "test" or "Python" == "Python")

接下來你將看到這個復雜表達式是如何逐級解為一個單獨結果的:

1. > 解出每一個等值判斷:

> a. 3 != 4 True : True and not ("testing" != "test" or "Python" == "Python") b.

"testing" != "test" True : True and not (True or "Python" == "Python") c.

"Python" == "Python" True : True and not (True or True)

1. > 找到括號中的每一個 and/or :

> a. (True or True) True: True and not (True)

1. 找到每一個 not 并將其逆轉:> > a. not (True) False: True and False

1. 找到剩下的 and/or ,解出它們的值:> > a. True and False False

這樣我們就解出了它最終的值為 False.

3、理清復雜邏輯的技巧

這里告訴大家一條捷徑去判斷布爾表達式的值。任何的 and 表達式包含一個 False 結果就是 False ,任何 or 表達式有一個 True 結果就是 True ,你就可以在此處得到結果,但要確保你能處理整個表達式,因為后面這是一個很有用的技能。

以上是“Python中布爾表達式怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

明光市| 县级市| 南投县| 内江市| 呼伦贝尔市| 绍兴县| 梨树县| 柳林县| 高阳县| 宜宾县| 五莲县| 中卫市| 嘉禾县| 陇南市| 舟山市| 澄江县| 石柱| 类乌齐县| 安平县| 怀远县| 大新县| 社会| 巴林左旗| 宜宾市| 翼城县| 务川| 文山县| 镇康县| 贡嘎县| 宝应县| 渑池县| 泸定县| 镇宁| 临西县| 瑞昌市| 赣榆县| 寿阳县| 抚州市| 灵寿县| 宜兰县| 鹤壁市|