练习正则表达式

import re
m=re.match(“hello”,“hello”)
if m is not None:
print(m.group())
print(m.class.name)
m=re.search(“python”,“i love python”)

if m is not None:
print(m.group()
print(m)
练习正则表达式_第1张图片

你可能感兴趣的:(笔记,python,正则表达式)