python, pt.06에서 처음부터 간단한 인터프리터를 빌드할 수 있습니다. While 루프
4396 단어 pythonfromscratchinterpreter
class Interpreter:
# ....(previous code)....
def While(self,xs):
_ , cond , block = xs
while self.eval(cond):
if isinstance(block[0],list):
for x in block:
self.eval(x)
else:
self.eval(block)
code=[
["Set","sum",0],
["Set","i",0],
["While", ["Lt", ["Get","i"], 100], [
["Set","i", ["Add",["Get","i"], 1] ],
["Set","sum", ["Add",["Get", "sum"],["Get","i"]]]
]],
["Print","sum(1..100) = ",["Get","sum"] ]
]
interpreter=Interpreter()
interpreter.run(code)
산출:
sum(1..100) = 5050
전체 코드 링크: part6
링크: Patreon
Reference
이 문제에 관하여(python, pt.06에서 처음부터 간단한 인터프리터를 빌드할 수 있습니다. While 루프), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/smadev/lets-build-a-simple-interpreter-from-scratch-in-python-pt-06-while-loop-51nf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)