>>> import re >>> p = re.compile('[a-z]+')

>>> m = p.search("3 python") >>> m.start() 2 >>> m.end() 8



여기서 end 위치가 왜 8이 되는 거지? null 때문인가??