I want to turn this list:
l=["Three","Four","Five","Six"]
into this one:
['Three', 3, 'Four', 4, 'Five', 5, 'Six', 6]
and I used this code (which works well) to do it:
for i,j in zip(range(1,len(l)*2,2),range(3,7)*2):
l.insert(i,j)
But I guess Python would not be proud of it. Is there a shorter way for this?