I have 2 lists as below:
list1 = ["jr", "sr", "manager"]
list2 = ["james", "william", "tim"]
I would like to combine the first element of list1 and then list2 and the pattern goes on.
Expected Output:
list3 = ["jr", "James", "sr", "william", "manager", "tim"]
I have tried the below:
list3 = []
list3.extend(name[0::])
list3.extend(rank[0::1])
print(list3)
but it fails to give me the expected output. Any suggestions?