中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

通過Python正則表達式實現簡單四則運算

發布時間:2020-07-24 09:17:23 來源:網絡 閱讀:900 作者:wywwfj 欄目:編程語言
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))
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南部县| 渭源县| 平谷区| 永和县| 河源市| 鄢陵县| 旌德县| 永登县| 昭苏县| 平谷区| 甘谷县| 贵港市| 苏州市| 英德市| 湘西| 新干县| 开远市| 紫云| 融水| 斗六市| 方山县| 万全县| 弥勒县| 松潘县| 阳朔县| 宕昌县| 阆中市| 广州市| 汉源县| 怀集县| 拜泉县| 永兴县| 安岳县| 安吉县| 英吉沙县| 青龙| 肥乡县| 太白县| 东辽县| 金昌市| 乌拉特后旗|