Python:在元组中解压缩元组

时间:2015-11-08 02:09:51

标签: python python-2.7 tuples unpack

可以在新元组中解压缩元组吗?

这样的事情:

x = (1, 2)
y = (*x, 3) # This is not allowed
# print y should then give (1, 2, 3)

0 个答案:

没有答案