re re.faindall() 抽出 使い方 list = re.findall(抽出文字,対象) 「対象」の中から「抽出文字」の条件に合う文字列をリストにします。 import re txt='abc-aaa-xyz' list1=re.f... re