for example I don't know what this is called » [('cat', 'meow'), ('dog', 'ruff')]
It's called a list of tuples
so I can now remove the square brackets but I want to make it liek this ↴
catmeow
dogrugg
You can do something like this:
your_list = [('cat', 'meow'), ('dog', 'ruff')]
for tpl in your_list:
print tpl[0]+tpl[1]