SyntaxFix
Write A Post
Hire A Developer
Questions
Easiest way would be to use join like this:
>>> myTuple = ['h','e','l','l','o'] >>> ''.join(myTuple) 'hello'
This works because your delimiter is essentially nothing, not even a blank space: ''.