私は次のリストを持っています:
[('Steve Buscemi', 'Mr. Pink'), ('Chris Penn', 'Nice Guy Eddie'), ...]
次の形式の文字列に変換する必要があります。
"(Steve Buscemi, Mr. Pink), (Chris Penn, Nice Guy Eddit), ..."
やってみた
str = ', '.join(item for item in items)
しかし、次のエラーが発生します。
TypeError: sequence item 0: expected string, tuple found
上記のフォーマットはどのように行いますか?