标签: python
这有什么捷径吗?
我从函数中得到这样的元组列表。
lot = [('foo', 'bar', 'tar'), ('foo1', 'bar1', 'tar1')]
我在这样的另一个功能中传递了相同的内容。
for args in lot: (arg1, arg2, arg3) = args var = somefunction(arg1, arg2, arg3)