calclex.py
来自「M5,一个功能强大的多处理器系统模拟器.很多针对处理器架构,性能的研究都使用它作」· Python 代码 · 共 50 行
PY
50 行
# -----------------------------------------------------------------------------# calclex.py# -----------------------------------------------------------------------------import syssys.path.append("..")import ply.lex as lextokens = ( 'NAME','NUMBER', 'PLUS','MINUS','TIMES','DIVIDE','EQUALS', 'LPAREN','RPAREN', )# Tokenst_PLUS = r'\+'t_MINUS = r'-'t_TIMES = r'\*'t_DIVIDE = r'/'t_EQUALS = r'='t_LPAREN = r'\('t_RPAREN = r'\)'t_NAME = r'[a-zA-Z_][a-zA-Z0-9_]*'def t_NUMBER(t): r'\d+' try: t.value = int(t.value) except ValueError: print "Integer value too large", t.value t.value = 0 return tt_ignore = " \t"def t_newline(t): r'\n+' t.lineno += t.value.count("\n")def t_error(t): print "Illegal character '%s'" % t.value[0] t.lexer.skip(1)# Build the lexerlex.lex()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?