i am trying to print out a list of string and integers vertically.
map = [["SG", 8], ["MY", 8], ["PH", 8], ["ID", 8], ["TH", 8]]
the print should return:
SG 8
MY 8
PH 8
ID 8
TH 8
this is what i have :
for element in map:
print(element)
the failed output:
['SG', 8]
['MY', 8]
etc....