您好,登錄后才能下訂單哦!
python練習作業...
import math, re string = "1.5 - 2.4 * ( (60-30 +(-40/5) * (9-2*5/3 + 7 /3*99/4*2998 +10 * 568/14 )) - (-4*3)/ (16-3*2) )" string = ''.join(string.split()) #字符串去空格 #字符串格式化 def stringFormat(string): string = string.replace('--', '+') string = string.replace('-', '+-') string = string.replace('*+-', '*-') string = string.replace('/+-', '/-') return string #不含括號字符串公式計算函數 def stringCalculate(string): fResult = 0.0 # 浮點型計算結果 tmpListAdd = list() # 加減法列表 #公式數據拆分 strList = stringFormat(string).split('+') #第一步先根據加法將字符串分段,如果分段內含有乘除法,則進入乘除法分段計算,否則轉化成浮點數,存入列表 for inLoopAdd in strList: #第一層循環---加減法分割 #乘法模塊 if'*' in inLoopAdd or '/' in inLoopAdd: tmpListMulti = list() #乘法列表 for inloopMulti in inLoopAdd.split('*'): #第二層----乘法分割 #除法模塊 if '/' in inloopMulti: divList = inloopMulti.split('/') fDivResult = float(divList[0]) for inloopDiv in range(len(divList)-1): #第三層-----內層除法計算 fDivResult /= float(divList[inloopDiv+1]) tmpListMulti.append(fDivResult) else: tmpListMulti.append(float(inloopMulti)) fMultiResult = 1 for inloop in tmpListMulti: fMultiResult *= inloop tmpListAdd.append(fMultiResult) elif inLoopAdd: tmpListAdd.append(float(inLoopAdd)) #將各分段結果累加 for fAddResult in tmpListAdd: fResult += fAddResult return str(fResult) #去括號 while('(' in string): temString = re.search('\([0-9+\-*./]*\)', string).group() string = string.replace(temString, stringCalculate(temString[1:-1])) print(stringCalculate(string))
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。