is there a way that i can concatenate a string list and 2 number list such that the concatenated list would take them one after the order while joining them.
Input:
a = [john, bob, ted, Paul]
b = [22, 34, 56, 12]
c = [13, 98, 78, 60]
Expected Ouput:
[john, 22, 13, bob, 34, 98, ted, 56, 78, Paul, 12, 60]