1. ホーム
  2. パイソン

[解決済み】Python string.join(list) が文字列配列ではなく、オブジェクト配列になる。

2022-03-27 01:24:52

質問

Pythonで、できること。

>>> list = ['a', 'b', 'c']
>>> ', '.join(list)
'a, b, c'

オブジェクトのリストがあるときに、同じことをする簡単な方法はありますか?

>>> class Obj:
...     def __str__(self):
...         return 'name'
...
>>> list = [Obj(), Obj(), Obj()]
>>> ', '.join(list)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: sequence item 0: expected string, instance found

それとも、forループに頼るしかないのでしょうか?

どのように解決するのですか?

リスト内包やジェネレータ式で代用することも可能です。

', '.join([str(x) for x in list])  # list comprehension
', '.join(str(x) for x in list)    # generator expression