リスト内のタプルペアに一致する正規表現を検索します。以下の正規表現を使用していますPython正規表現がタプルペアに一致する
s = '[(aleakedteaserand, NN), (abehind, IN), (the, DT)]'
re.findall(r'\((.*,.*)\)',s)
しかし、それでもまだ中括弧がありません。
['aleakedteaserand, NN), (abehind, IN), (the, DT']
予想される出力:
[(aleakedteaserand、NN)、(abehind、IN)、(DT)]
置き、適切な引用符。 –