I've written a function in python that returns a list, for example
[(1,1),(2,2),(3,3)]
But i want the output as a string so i can replace the comma with another char so the output would be
'1@1' '2@2' '3@3'
Any easy way around this?:) Thanks for any tips in advance