4.round()函式——四捨五入
功能:返回浮點數的四捨五入的值
語法:round(x,n)
示例:實現加減乘除計算器
class mycalc:
def init(self,a,b):
self.a=a
self.b=b
def addition(self,retain):
return round(self.a + self.b,retain)
def subtraction(self, retain):
return round(self.a - self.b, retain)
def multiplication(self, retain):
return round(self.a * self.b, retain)
def division(self, retain):
return round(self.a / self.b, retain)
7.max()函式——取出給定引數的最大值
功能:用於獲取指定數值或指定序列中最大的數值
示例:def searchmax(item):
pro1 =
pro2 =
pro3 =
prolist = [pro1,pro2,pro3]
a = max(prolist,key=lambda x: x[item])
msg=
print(「您獲取的引數資訊是:」,msg[item])
return a
itemname=input(「請輸入要查詢的配置項最高的引數名稱:」)
productitem=searchmax(itemname)
print(productitem)
Python 第二部分 函式
目錄前言 函式是工具,呼叫的過程即使用工具的過程,因此函式名為動詞為好。先定義再呼叫。一般格式為 def 函式名 引數 好的函式名能看出其功能 段 段可適當的注釋 段 return 返回值 函式名 呼叫函式 乙個函式無非三種情況 有引數的情況 def max2 x,y if x y print x ...
Web API 第二部分
web api 第二部分 元素偏移量 offset element.offsettop element.offsetleft element.offsetwidth 可以得到元素的大小 寬度和高度 是包含padding border width element.offsetheight elemen...
redux 第二部分
redux 的使用方法,為什麼使用 action.js 檔案,進行優化 將其分開,然後我們通過工廠函式的每次返回不同的物件,由於引數是固定的,每次返回的都是事件型別和事件資料,所以我們可以使用乙個函式,通過其返回值來返回乙個物件,讓後傳遞給 action 我們的 reducer 函式有兩個引數,引數...