Answers for "python create array from 2 lists"

0

how to combine 2 lists in python

l1 = [1,2,3,4]
l2 = [1,1,1,1]
l3 = [l1[x//2] if x % 2 == 0 else l2[x//2] for x in range(8)]
// l3: [1, 2, 3, 4, 5, 6, 7, 8]
Posted by: Guest on May-03-2021

Code answers related to "python create array from 2 lists"

Python Answers by Framework

Browse Popular Code Answers by Language