真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python邏輯操作中的三大應(yīng)用方案

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

站在用戶的角度思考問題,與客戶深入溝通,找到雷山網(wǎng)站設(shè)計與雷山網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都做網(wǎng)站、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、主機(jī)域名、虛擬主機(jī)、企業(yè)郵箱。業(yè)務(wù)覆蓋雷山地區(qū)。

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

舉例:

#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

嚴(yán)格的說,邏輯操作符的操作數(shù)應(yīng)該為布爾表達(dá)式。但Python邏輯操作對此處理的比較靈活。即使操作數(shù)是數(shù)字,解釋器也把他們當(dāng)成“表達(dá)式”。非0的數(shù)字的布爾值為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邏輯操作中,空字符串為假,非空字符串為真。非零的數(shù)為真。

數(shù)字和字符串之間、字符串之間的邏輯操作規(guī)律是:

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

如果是一真一假,返回真值表達(dá)式的值,如果兩個都是假,比如空值和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 

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


文章標(biāo)題:Python邏輯操作中的三大應(yīng)用方案
網(wǎng)站路徑:http://weahome.cn/article/gdjjgp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部