5

有没有办法有效地连接 str 和 list?

inside = [] #a list of Items

class Backpack:
    def add(toadd):
        inside += toadd

print "Your backpack contains: " #now what do I do here?
4

2 回答 2

9

听起来您只是想将字符串添加到字符串列表中。那只是append

>>> inside = ['thing', 'other thing']
>>> inside.append('another thing')
>>> inside
['thing', 'other thing', 'another thing']

这里没有特定于字符串的东西。同样的事情适用于Item实例列表、字符串列表列表或 37 种不同类型的 37 种不同事物的列表。

通常,append这是将单个事物连接到列表末尾的最有效方法。如果你想连接一堆东西,并且你已经将它们放在一个列表(或迭代器或其他序列)中,而不是一次做一个,使用extend一次完成它们,或者只是+=代替(这意味着与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'

请注意,仅调用单个项目的sstr列表;如果你想调用它们,你必须明确地这样做;这就是这部分的用途。Itemreprstrstr(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
于 2012-11-02T22:53:27.947 回答
5

你可以试试这个:

In [4]: s = 'Your backpack contains '

In [5]: l = ['item1', 'item2', 'item3']

In [6]: print s + ', '.join(l)
Your backpack contains item1, item2, item3

与设置中的其他 Python 方法相比,该join方法有点奇怪,但在这种情况下,它的意思是“获取此列表并将其转换为字符串,用逗号和空格将元素连接在一起”。这有点奇怪,因为您指定了首先要加入的字符串,这有点不寻常,但很快就会成为第二天性:) 请参阅此处进行讨论。

如果您希望将项目添加到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
于 2012-11-02T22:40:30.523 回答