N = 6
Cards = [1, 2, 3, 4, 5, 6]
mid = len(Cards) // 2
list1 = Cards[:mid]
list2 = Cards[mid:]
result = []
for i in range(mid):
result.append(list1[i])
result.append(list2[i])
print(result)
To embed this project on your website, copy the following code and paste it into your website's HTML: