[Solved] Print a single string from and an array without brackets


You might want to use use zip functionality to print pairs of values.

list1 = ["1", "2"]
list2 = ["3", "4"]
for pair in zip(list1, list2):
    print i

This will print:

 ('1', '3') 
 ('2', '4')

Please notice that the lists should be at the same size.

2

solved Print a single string from and an array without brackets