标签: python python-3.x python-2.7
我需要找出如何交错2个列表。 例如:
list1 = ['Hi', ' how', 'you', '?'] list2 = [',', 'are', 'today']
预期输出:
Hi, how are you today?