python裡面的數學

2022-07-31 16:06:13 字數 1172 閱讀 8445

一.基本運算子

1.算數運算

2.比較運算

特殊情況:!= 不等於 新版本不支援 <> 不等號

3.賦值運算

4.邏輯運算

not : 非   非真即假,非假即真.   -

and : 並且    左右兩端同時為真,結果才為真.   *

or : 或者      左右兩端有乙個為真,結果就是真.   +

true : 真    1    判斷的結果

false : 假   0     判斷的結果

print(3 > 4 or 4 < 3 and 1 == 1)  # false

print(1 < 2 and 3 < 4 or 1 > 2) # true

print(2 > 1 and 3 < 4 or 4 > 5 and 2 < 1) # true

print(1 > 2 and 3 < 4 or 4 > 5 and 2 > 1 or 9 < 8) # false

print(1 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6) # false

print((not 2 > 1 and 3 < 4) or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6) # false

當出現  x or y 時 , 判斷x是否為0 ; 如果x==0 ,則返回y ,否則返回x.(x and y 恰恰相反)

5.成員運算

in : 包含     字串  in  字串   

字串 in 列表  等等

if "馬冬梅" in content : #判斷content裡面有沒有馬冬梅

else:

ad = input("請輸入你的廣告詞:")

if "最" in ad or "第一" in ad or "全球" in ad : # or 滿足任何乙個都不合法

print("你的廣告詞不合法!")

else:

print("你的廣告詞合法!")

Python裡面的字典

python 將這種資料型別叫做 dict 有的語言裡它的名稱是 hash 這兩種名字都會用到,不過這並不重要,重要的是它們和列表的區別。你看,針對列表你可以做這樣的事情 things a b c d print things 1 b things 1 z print things 1 z prin...

python裡面的工廠模式

工廠模式 工廠模式 是乙個在軟體開發中用來建立物件的設計模型。使用工廠模式的應用場景 當不知道使用者想要建立什麼樣的物件時可以使用?工廠模式。乙個手機工廠模式 class phone object defpicture self print 照相 def call self print 打 clas...

python裡面的functools函式

在使用之前要先導入functools庫,偏函式是在一次呼叫之後再次呼叫時相應的引數就不用再傳了。如上圖所示 在第一次呼叫偏函式之後之前傳進去的值1,2,3一直在函式裡面。如果乙個函式 def note func note function def print note something retur...