<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在之前的基礎上進一步實現了全功能表示式求值。
與其說距離DSL只有一步之遙,不如說,DSL機制已經實現。因為可以任意擴充套件函數,而函數的內容
完全可以自行定義。
所以共用給大家,歡迎意見和建議。
import math opDict={} def addoptr(ch, outLev, inLev, func, parmNum=2): obj= {'name':ch, 'out':outLev, 'in':inLev, 'func':func, 'parmNum':parmNum} opDict[ch]= obj def makeList(x): if isinstance(x[-2], list): x[-2].append(x[-1]) return x[-2].copy() else: ret= [] ret.append(x[-2]) ret.append(x[-1]) return ret addoptr('#', 1, 1, None) addoptr('(', 90, 2, None) addoptr(')', 2, None, None) addoptr('[', 90, 2, None) addoptr(']', 2, 2, None) addoptr(',', 8, 9, makeList) addoptr('&', 13, 14, lambda x: x[-1] and x[-2]) addoptr('and', 13, 14, lambda x: x[-1] and x[-2]) addoptr('|', 11, 12, lambda x: x[-1] or x[-2]) addoptr('or', 11, 12, lambda x: x[-1] or x[-2]) addoptr('~', 16, 17, lambda x: not x[-1],1) addoptr('not', 16, 17, lambda x: not x[-1],1) addoptr('=', 22, 23, lambda x: x[-1]==x[-2]) addoptr('>', 22, 23, lambda x: x[-2]>x[-1]) addoptr('<', 22, 23, lambda x: x[-2]<x[-1]) addoptr('>=', 22, 23, lambda x: x[-2]>=x[-1]) addoptr('<=', 22, 23, lambda x: x[-2]<=x[-1]) addoptr('!=', 22, 23, lambda x: x[-2]!=x[-1]) addoptr('<>', 22, 23, lambda x: x[-2]!=x[-1]) addoptr('in', 22, 23, lambda x: x[-2] in x[-1]) addoptr('+', 31, 32, lambda x: x[-2]+x[-1]) addoptr('-', 31, 32, lambda x: x[-2]-x[-1]) addoptr('*', 41, 42, lambda x: x[-2]*x[-1]) addoptr('/', 41, 42, lambda x: x[-2]/x[-1]) addoptr('//', 41, 42, lambda x: x[-2]//x[-1]) addoptr('%', 41, 42, lambda x: x[-2]%x[-1]) addoptr('neg', 51, 52, lambda x: -x[-1],1) addoptr('**', 55, 56, lambda x: x[-2]**x[-1]) addoptr('sin', 61, 62, lambda x: math.sin(x[-1]),1) alphabet= [chr(ord('a')+x) for x in range(26)]+[chr(ord('A')+x) for x in range(26)] # print(opChar) # print(opSep) # print(alphabet) def isfloat(str1): try: number = float(str1) except ValueError: return False return True class exprEngine: def __init__(this, isVar=None, getValue=None): this.opndStack=[] this.optrStack=[] this.isVar= isVar this.getValue= getValue # 這個狀態,特為負號/減號這一特殊符的雙含義號所設定 this.negState=0 # 內建函數 if isVar: addoptr('isvar', 61, 62, lambda x: isVar(x[-1]),1) # 處理識別 this.oplen= len(max(opDict, key=lambda x:len(x))) this.opChar=[] for i in range(this.oplen): tmp=[x[0:i+1] for x in opDict if len(x)>=i+1] this.opChar.append(tmp) this.opSep= [x[0] for x in opDict if x[0] not in alphabet]+[' ', 't'] print(this.oplen) print(this.opChar) print(this.opSep) def readWord(this, cond): cond= cond.strip() if cond=='': return '', '#' if cond[0] in this.opChar[0]: l1=this.oplen for i in range(this.oplen): if cond[:i+1] not in this.opChar[i]: l1= i break print(l1) if cond[:l1] in this.opChar[l1-1]: return cond[:l1], 'optr' part= '' for ch in cond: if ch in this.opSep: break part+=ch return part, 'opnd' def pushoptr(this, optr): # 對負號/減號的特殊處理 if optr=='-' and this.negState==0: # 這種情況,實際的含義是負號 optr= 'neg' op= opDict[optr].copy() if len(this.optrStack)==0: this.optrStack.append(op) return opTop= this.optrStack[-1] if op['out']> opTop['in']: this.optrStack.append(op) elif op['out']< opTop['in']: this.popoptr() # 這裡遞迴 this.pushoptr(optr) elif op['out']== opTop['in']: # 消括號對,簡單彈出 this.optrStack.pop() this.negState=0 def popoptr(this): opTop= this.optrStack[-1] a= opTop['parmNum'] if len(this.opndStack)<a: raise Exception('運算元不足,可能有語法錯誤!') ret= opTop['func'](this.opndStack[-a:]) this.opndStack= this.opndStack[:-a] this.opndStack.append(ret) this.optrStack.pop() def pushopnd(this, opnd): if opnd[0]=='"': # 肯定是字串 this.opndStack.append(opnd[1:]) elif this.isVar and this.isVar(opnd): this.opndStack.append(this.getValue(opnd)) else: if opnd.isdigit(): this.opndStack.append(int(opnd)) elif isfloat(opnd): this.opndStack.append(float(opnd)) else: this.opndStack.append(opnd) this.negState=1 def popopnd(this): if len(this.opndStack)==1: return this.opndStack[0] else: print(this.opndStack) print(this.optrStack) raise Exception('可能存在語法錯誤。') def eval(this, cond): this.optrStack=[] this.opndStack=[] this.pushoptr('#') while True: aword,kind= this.readWord(cond) print(aword, cond) cond= cond[len(aword):].strip() if kind=='#': this.pushoptr('#') break elif kind=='optr': this.pushoptr(aword) else: if aword=='': raise Exception('運算元為空,肯定有哪裡錯了。') this.pushopnd(aword) print(this.optrStack) print(this.opndStack) return this.popopnd() if __name__=='__main__': # print(opDict) a= exprEngine() # a.addInfo('水位', '低') # b= a.eval('3 + 5 *2 = 13 and (3+5)*2=16 & 7-2 in [3,5,7] & 12>=15 or a in [a, b,c]') # b= a.eval('sin(-1)<1 and 3+-5=-2') # print(b) # b= a.eval('7*-3') b= a.eval('3**3=27 and 19%5=4 and 21//6=3') print(b)
以上就是python開發任意表示式求值全功能範例的詳細內容,更多關於python表示式求值的資料請關注it145.com其它相關文章!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45