Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python 정규식에서 re.compile() 메서드를 사용하는 이유는 무엇입니까?

<시간/>

re.compile() 메서드

re.compile(패턴, repl, 문자열):

정규식 패턴을 패턴 일치에 사용할 수 있는 패턴 개체로 결합할 수 있습니다. 다시 작성하지 않고 패턴을 다시 검색하는 데에도 도움이 됩니다.

예시

import re
pattern=re.compile('TP')
result=pattern.findall('TP Tutorialspoint TP')
print result
result2=pattern.findall('TP is most popular tutorials site of India')
print result2

출력

['TP', 'TP']
['TP']