re re.compile() パターン 使い方 obj = re.compile(パターン) 「パターン」をobjに格納します import re pattern=re.compile('a') print(pattern) #結果 re.co... re