将 str 连接到列表的好方法?
Posted
技术标签:
【中文标题】将 str 连接到列表的好方法?【英文标题】:Good way to concatenate str to list? 【发布时间】:2012-10-23 15:04:35 【问题描述】:有没有办法有效地连接 str 和 list?
inside = [] #a list of Items
class Backpack:
def add(toadd):
inside += toadd
print "Your backpack contains: " #now what do I do here?
【问题讨论】:
这是一个旁注,但是:您几乎肯定不想要一个使用全局变量进行存储的类,并且您可能还希望add
采用self
参数...
【参考方案1】:
听起来您只是想将字符串添加到字符串列表中。那只是append
:
>>> inside = ['thing', 'other thing']
>>> inside.append('another thing')
>>> inside
['thing', 'other thing', 'another thing']
这里没有专门针对字符串的;同样的事情适用于Item
实例列表、字符串列表列表或 37 种不同类型的 37 种不同事物的列表。
一般来说,append
是将单个事物连接到列表末尾的最有效方法。如果您想连接一堆东西,并且您已经将它们放在一个列表(或迭代器或其他序列)中,而不是一次只做一个,使用extend
一次性完成它们,或者只使用@987654326 @ 代替(这意味着与 extend
的列表相同):
>>> inside = ['thing', 'other thing']
>>> in_hand = ['sword', 'lamp']
>>> inside += in_hand
>>> inside
['thing', 'other thing', 'sword', 'lamp']
如果您想稍后将该字符串列表连接成一个字符串,那就是 join
方法,正如 RocketDonkey 解释的那样:
>>> ', '.join(inside)
'thing, other thing, another thing'
我猜你想更花哨一点,并在最后一个事物之间加上一个“和”,如果少于三个,则跳过逗号,等等。但如果你知道如何分割列表以及如何使用join
,我认为可以留给读者作为练习。
如果您试图反过来将列表连接到字符串,则需要以某种方式将该列表转换为字符串。你可以只使用str
,但通常这不会给你想要的东西,你会想要上面的join
示例。
无论如何,一旦你有了字符串,你就可以将它添加到另一个字符串中:
>>> 'Inside = ' + str(inside)
"Inside = ['thing', 'other thing', 'sword', 'lamp']"
>>> 'Inside = ' + ', '.join(inside)
'Inside = thing, other thing, another thing'
如果您有一个不是字符串的列表并且想要将它们添加到字符串中,您必须为这些事物确定适当的字符串表示形式(除非您对repr
感到满意):
>>> class Item(object):
... def __init__(self, desc):
... self.desc = desc
... def __repr__(self):
... return 'Item(' + repr(self.desc) + ')'
... def __repr__(self):
... return self.desc
...
>>> inside = [Item('thing'), Item('other thing')]
>>> 'Inside = ' + repr(inside)
... "Inside = [Item('thing'), Item('other thing')]"
>>> 'Inside = ' + str(inside)
... "Inside = [Item('thing'), Item('other thing')]"
>>> 'Inside = ' + ', '.join(str(i) for i in inside)
... 'Inside = thing, other thing'
请注意,仅在Item
s 列表上调用str
对单个项目调用repr
;如果你想给他们打电话str
,你必须明确地这样做;这就是str(i) for i in inside
部分的用途。
把它们放在一起:
class Backpack:
def __init__(self):
self.inside = []
def add(self, toadd):
self.inside.append(toadd)
def addmany(self, listtoadd):
self.inside += listtoadd
def __str__(self):
return ', '.join(str(i) for i in self.inside)
pack = Backpack()
pack.add('thing')
pack.add('other thing')
pack.add('another thing')
print 'Your backpack contains:', pack
当你运行它时,它会打印:
Your backpack contains: thing, other thing, another thing
【讨论】:
我真的想将Item
s 的列表添加到字符串中,这样可能会使事情复杂化
您需要定义将Item
或Items
列表转换为字符串的含义。完成此操作后,将其添加到字符串很容易。我将编辑我的答案以提供更多详细信息。
哈,+1,因为我刚刚意识到我的编辑与您在第一部分中提到的内容重叠 :) 抱歉重复。
@SuperCheezGi 根据您上面的评论,这就是您想要的答案:)【参考方案2】:
你可以试试这个:
In [4]: s = 'Your backpack contains '
In [5]: l = ['item1', 'item2', 'item3']
In [6]: print s + ', '.join(l)
Your backpack contains item1, item2, item3
join
方法在其设置中与其他 Python 方法相比有点奇怪,但在这种情况下,它的意思是“获取此列表并将其转换为字符串,用逗号和空格将元素连接在一起”。这有点奇怪,因为您指定了首先要加入的字符串,这有点不寻常,但很快就会成为第二天性:) 请参阅 here 进行讨论。
如果您希望将项目添加到 inside
(列表),将项目添加到列表的主要方法是使用 append
方法。然后使用join
将所有项目组合成一个字符串:
In [11]: inside = []
In [12]: inside.append('item1')
In [13]: inside.append('item2')
In [14]: inside.append('item3')
In [15]: print 'Your backpack contains ' + ', '.join(inside)
Your backpack contains item1, item2, item3
【讨论】:
好主意,但我真的很想有一种方法可以轻松扩展它而不必做所有这些,但感谢你的想法! @SuperCheezGi 嗯,你到底是什么意思?实际上,您可以在示例中将l
替换为inside
,它也会这样做。您是否在寻找不同的东西?
我正在寻找一种方法来添加东西到inside
,然后让它打印inside
中的所有东西
@SuperCheezGi 哦,那么如何将内容实际附加到inside
列表中?
@SuperCheezGi 另外,您使用列表的方法是正确的——对于此类信息,这是一个比字符串更好的容器。使用join
可以让您在准备好时将其打印出来。以上是关于将 str 连接到列表的好方法?的主要内容,如果未能解决你的问题,请参考以下文章
TypeError:在使用 Python 进行网络抓取时,只能将 str(而不是“列表”)连接到 str 错误
TypeError:无法将字节连接到 str。 Pycrypto Aes 加密