最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

python實現計算倒數的方法

來源:懂視網 責編:小采 時間:2020-11-27 14:34:22
文檔

python實現計算倒數的方法

python實現計算倒數的方法:本文實例講述了python實現計算倒數的方法。分享給大家供大家參考。具體如下: class Expr: def __add__(self, other): return Plus(self, other) def __mul__(self, other): return Times(self, other) class
推薦度:
導讀python實現計算倒數的方法:本文實例講述了python實現計算倒數的方法。分享給大家供大家參考。具體如下: class Expr: def __add__(self, other): return Plus(self, other) def __mul__(self, other): return Times(self, other) class

本文實例講述了python實現計算倒數的方法。分享給大家供大家參考。具體如下:

class Expr: 
 def __add__(self, other): 
 return Plus(self, other) 
 def __mul__(self, other): 
 return Times(self, other) 
class Int(Expr): 
 def __init__(self, n): 
 self.n = n 
 def d(self, v): 
 return Int(0) 
 def __str__(self): 
 return `self.n` 
class Var(Expr): 
 def __init__(self, var): 
 self.var = var 
 def d(self, v): 
 return Int(self.var == v and 1 or 0) 
 def __str__(self): 
 return self.var 
class Plus(Expr): 
 def __init__(self, a, b): 
 self.e1 = a 
 self.e2 = b 
 def d(self, v): 
 return Plus(self.e1.d(v), self.e2.d(v)) 
 def __str__(self): 
 return "(%s + %s)" % (self.e1, self.e2) 
class Times(Expr): 
 def __init__(self, a, b): 
 self.e1 = a 
 self.e2 = b 
 def d(self, v): 
 return Plus(Times(self.e1, self.e2.d(v)), Times(self.e1.d(v), self.e2))
 def __str__(self): 
 return "(%s * %s)" % (self.e1, self.e2) 
if __name__ == "__main__": 
 x = Var("x") 
 a = Var("a") 
 b = Var("b") 
 c = Var("c") 
 e = a * x * x + b * x + c 
 print "d(%s, x) = %s" % (e, e.d("x")) 

希望本文所述對大家的Python程序設計有所幫助。

聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

python實現計算倒數的方法

python實現計算倒數的方法:本文實例講述了python實現計算倒數的方法。分享給大家供大家參考。具體如下: class Expr: def __add__(self, other): return Plus(self, other) def __mul__(self, other): return Times(self, other) class
推薦度:
標簽: 方法 計算 進行
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top