def skim_token(t):
print(T.tok_name[t.type], T.tok_name[t.exact_type], t.string)
return
if T.tok_name[t.type] == T.tok_name[t.exact_type]:
print(T.tok_name[t.type], t.string)
else:
print(T.tok_name[t.type], T.tok_name[t.exact_type], t.string)
评论列表
文章目录