for example I don't know what this is called » [('cat', 'meow'), ('dog', 'ruff')]
if I try for l in [('cat', 'meow'), ('dog', 'ruff')]: print l
I am using l for lady luck lucy not I for I or the number 1 + maybe even | pipe for smoking
it makes it like this ↴
('cat', 'meow')
('dog', 'ruff')
so I can now remove the square brackets but I want to make it liek this ↴
catmeow
dogrugg
if there are spaces in the words then I will put them there first before I begin but I would also like to know how to make it like this other way just incase I need in my future ↴
cat meow
dog ruff
and even like this ↴
cat, meow
dog,ruff