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

溫馨提示×

溫馨提示×

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

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

Python邏輯操作中的三大應用方案

發布時間:2021-10-28 16:36:36 來源:億速云 閱讀:164 作者:柒染 欄目:編程語言

這篇文章給大家介紹Python邏輯操作中的三大應用方案,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Python邏輯在運作中有不少的問題需要解決。在實際的使用中有三種:and、or、not。分別對應與、或、非。

舉例:

#coding:utf-8  test1 = 12 test2 = 0 print (test1 > test2) and (test1 > 14) #result = False print (test1 < test2) or (test1 > -1) #result = True print (not test1) #result = False print (not test2) #result = True

嚴格的說,邏輯操作符的操作數應該為布爾表達式。但Python邏輯操作對此處理的比較靈活。即使操作數是數字,解釋器也把他們當成“表達式”。非0的數字的布爾值為1,0的布爾值為0.

舉例:

#coding:utf-8  test1 = 12 test2 = 0 print (test1 and test2) #result = 0 print (test1 or test2) #result = 12 print (not test1) #result = Flase print (not test2) #reslut = True

在Python邏輯操作中,空字符串為假,非空字符串為真。非零的數為真。

數字和字符串之間、字符串之間的邏輯操作規律是:

對于and操作符:只要左邊的表達式為真,整個表達式返回的值是右邊表達式的值,否則,返回左邊表達式的值對于or操作符:只要兩邊的表達式為真,整個表達式的結果是左邊表達式的值。

如果是一真一假,返回真值表達式的值,如果兩個都是假,比如空值和0,返回的是右邊的值。(空值或0)舉例:

  1. #coding:utf-8   

  2. test1 = 12 

  3. test2 = 0   

  4. test3 = ''   

  5. test4 = "First"   

  6. print test1 and test3 #result = ''   

  7. print test3 and test1 #result = ''   

  8. print test1 and test4 #result = "First"   

  9. print test4 and test1 #result = 12 

  10. print test1 or test2 #result = 12 

  11. print test1 or test3 #result = 1212 print test3 or test4 
    #result = "First" 

  12. print test2 or test4 #result = "First" 

  13. print test1 or test4 #result = 12 

  14. print test4 or test1 #result = "First" 

  15. print test2 or test3 #result = '' 

  16. print test3 or test2 #result = 0 

關于Python邏輯操作中的三大應用方案就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

宁远县| 玛纳斯县| 平泉县| 黑龙江省| 工布江达县| 治县。| 安龙县| 洛阳市| 北海市| 米脂县| 历史| 龙里县| 神农架林区| 灵寿县| 盐池县| 和林格尔县| 搜索| 徐汇区| 额尔古纳市| 大港区| 商都县| 宁海县| 吉水县| 措美县| 迁安市| 无极县| 团风县| 普安县| 鄂托克旗| 绥滨县| 静安区| 五家渠市| 响水县| 苏尼特右旗| 枣阳市| 太保市| 巫山县| 金门县| 甘谷县| 郸城县| 富蕴县|