Extract one by one values from multiple lists and stored in to new LIST - Python
List1 = ('1', '2','3','4')
List2 = ('one', 'two','three','four')
List3 = ('1-1', '1-2','1-3','1-4')
output_list = ('1,one,1-1', '2,two,1-2','3,three,1-3','4,four,1-4')