Python LL(1) Parser Design Designing a lexical analyzer and LL(1) Parser using Python based on the hypothetical language. Problem Statement Design lexer and parser for the following hypothetical language int main() begin int n; do expr=expr+expr; n=exp; while(exp) return(n) end