python, pt.02 Basic Arithmetic에서 처음부터 간단한 인터프리터를 구축할 수 있습니다.
8933 단어 pythonfromscratchinterpreter
이 게시물에서는 인터프리터에 기본 산술을 추가합니다.
class Interpreter:
def __init__(self):
pass
def run(self,code):
for xs in code:
self.eval(xs)
def eval(self,xs):
if isinstance(xs,list):
return self.__getattribute__(xs[0])(xs)
return xs
def Print(self,xs):
if len(xs)==1:
print()
return
l=len(xs)-1
for i,x in enumerate(xs[1:]):
e=self.eval(x)
if i<l-1:
print(e,end="")
else:
if e!=",":
print(e)
else:
print(e,end="")
# Basic arithmetic operations,
# Notice how we call self.eval function recursively:
def Add(self,xs):
return self.eval(xs[1])+self.eval(xs[2])
def Sub(self,xs):
return self.eval(xs[1])-self.eval(xs[2])
def Mul(self,xs):
return self.eval(xs[1])*self.eval(xs[2])
def Div(self,xs):
return self.eval(xs[1])/self.eval(xs[2])
code=[
["Print","3 + 5 = ", ["Add", 3, 5] ],
["Print","1 - 2 * 3 = ", ["Sub", 1, ["Mul", 2, 3] ] ],
["Print",["Add", "Hello ", "again "],"W",["Mul","o",10],"rld!"],
]
interpreter=Interpreter()
interpreter.run(code)
산출:
3 + 5 = 8
1 - 2 * 3 = -5
Hello again Woooooooooorld!
링크: Patreon
Reference
이 문제에 관하여(python, pt.02 Basic Arithmetic에서 처음부터 간단한 인터프리터를 구축할 수 있습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/smadev/lets-build-a-simple-interpreter-from-scratch-in-python-pt-02-basic-arithmetic-5ch4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)