with (CtxManager() as example):
...
with (
CtxManager1(),
CtxManager2()
):
...
with (CtxManager1() as example,
CtxManager2()):
...
with (CtxManager1(),
CtxManager2() as example):
...
with (
CtxManager1() as example1,
CtxManager2() as example2
):
...이름 | LL(1) | PEG |
설명 | Left to Right Left Most Derivation Tree 1 symbol is used to make a decision | PEG = Parsing Expression Grammar |
Python 도입 | 3.9 이전에 사용 | 3.9부터 도입 |
Parser 유형 | Non-recursive descent parser 비재귀적인 하향식 분석기 | Recursive descent parser 재귀적인 하향식 분석기 |