Skip to content

Latest commit

 

History

History
81 lines (67 loc) · 770 Bytes

词法分析.md

File metadata and controls

81 lines (67 loc) · 770 Bytes

词法分析

数字

正则:[0-9]+(\.[0-9]+)?

number

标识符

identifier

关键字

  • def
  • if
  • else
  • elif
  • while
  • return
  • break
  • continue
  • and
  • or
  • not
  • is
  • True
  • False
  • None
  • pass
  • global

字符串

string

注释

正则:#[^newline]*

comment

运算符

  • <
  • <=
  • >
  • >=
  • ==
  • !=
  • +
  • -
  • *
  • /
  • %
  • **
  • //
  • <<
  • >>
  • &
  • |
  • ~
  • ^

operator

分隔符

  • (
  • )
  • [
  • ]
  • {
  • }
  • ,
  • :
  • =
  • .
  • newline
  • indent increase
  • indent decrease

delimiter

合并

all