e = ('ham', 5, 1, 'bird') print( ','.join(map(str,e)) ) # 'ham,5,1,bird' print( ''.join(map(str,e)) ) # 'ham51bird'