当前位置:  开发笔记 > 编程语言 > 正文

对象数组上的Python string.join(list)而不是字符串数组

如何解决《对象数组上的Pythonstring.join(list)而不是字符串数组》经验,为你挑选了2个好方法。

在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 "", line 1, in 
TypeError: sequence item 0: expected string, instance found

或者我是否必须求助于for循环?



1> Adam Rosenfi..:

您可以使用列表推导或生成器表达式:

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


为了获得良好的30%加速(超过上面的生成器表达式),可以使用所谓的不太可读的`map`表达式(如下).
或者生成器表​​达式:','.join(列表中x的str(x))
这个答案客观上比`map`解决方案更糟糕.

2> Triptych..:

内置的字符串构造函数会自动调用obj.__str__:

''.join(map(str,list))


+1:地图是一种很好的方法; "更改列表"不是一个准确的评论.
(另一个)+1 ..地图的可读性不差,只需要知道地图功能的作用
推荐阅读
围脖上的博博_771
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有