pr242.py
来自「mallet是自然语言处理、机器学习领域的一个开源项目。」· Python 代码 · 共 13 行
PY
13 行
# PR#242 re.VERBOSE flag not implementedimport recre = re.compile('''# a verbose regular expression\d+# this line is also ignoredhello''', re.VERBOSE)# test itif not cre.match('0123hello'): print 're.VERBOSE did not work'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?