标签: python python-2.7 tuples unpack
可以在新元组中解压缩元组吗?
这样的事情:
x = (1, 2) y = (*x, 3) # This is not allowed # print y should then give (1, 2, 3)