在Python

时间:2017-06-09 19:09:23

标签: python arrays

我正在处理多个列表,我想像下面的示例一样进行组合:

listone = ['firstname', 'secondname', ...] listtwo = ['phoneone', 'phonetwo', ...] listthree = ['adressone', 'adresstwo', ...]

获取这些列表并将元素放在一起:

another_listone = ['firstname', 'phoneone', 'adressone'] another_listtwo = ['secondname', 'phonetwo', 'adresstwo']

我尝试用for来附加,但这些列表有很多数据,我的代码总是崩溃。有人可以帮忙吗?

0 个答案:

没有答案