match从开始的位置进行匹配,如果开始的位置没有匹配到,就直接匹配失败
text = 'hello'
ret = re.match('h', text)
print(ret.group())
# >> h
如果第一个字母不是
2019-07-08
