回答:
2番目の要素を1タプルにする必要があります。例:
a = ('2',)
b = 'z'
new = a + (b,)
(a+b)*c
new = a + b
代わりにできますnew = a + (b,)
。AFAICT、python3とpython2.7で同じように機能します。
a += ('z',)
、で述べたように怒鳴るの答え
タプルからリスト、タプルへ:
a = ('2',)
b = 'b'
l = list(a)
l.append(b)
tuple(l)
または、追加するアイテムのより長いリストを使用して
a = ('2',)
items = ['o', 'k', 'd', 'o']
l = list(a)
for x in items:
l.append(x)
print tuple(l)
あなたにあげる
>>>
('2', 'o', 'k', 'd', 'o')
ここでのポイントは次のとおりです。リストは変更可能なシーケンス型です。したがって、要素を追加または削除することにより、特定のリストを変更できます。タプルは不変のシーケンス型です。タプルは変更できません。したがって、新しいものを作成する必要があります。
list
、最初に変換するOPに注意し、アイテムを追加し、最後に変換するtuple
場合は、これが最良の解決策+1
タプルはtuple
それに追加することしかできません。それを行う最善の方法は次のとおりです。
mytuple =(u'2',)
mytuple +=(new.id,)
以下のデータで同じシナリオを試しましたが、すべて正常に動作しているようです。
>>> mytuple = (u'2',)
>>> mytuple += ('example text',)
>>> print mytuple
(u'2','example text')
>>> x = (u'2',)
>>> x += u"random string"
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
x += u"random string"
TypeError: can only concatenate tuple (not "unicode") to tuple
>>> x += (u"random string", ) # concatenate a one-tuple instead
>>> x
(u'2', u'random string')
a = ('x', 'y')
b = a + ('z',)
print(b)
a = ('x', 'y')
b = a + tuple('b')
print(b)
TypeError: 'int' object is not iterable