re re.escape() エスケープシーケンス 使い方 str = re.escape(文字列) 「文字列」の特殊文字をエスケープシーケンスします import re txt=' ( ) . + * ? ' str1=re.escape(txt) p... re