python join tuple integer to string

Solutions on MaxInterview for python join tuple integer to string by the best coders in the world

showing results for - "python join tuple integer to string"
Valeria
16 Feb 2018
1e = ('ham', 5, 1, 'bird')
2print( ','.join(map(str,e)) ) 			# 'ham,5,1,bird'
3print( ''.join(map(str,e)) ) 			# 'ham51bird'
similar questions
queries leading to this page
python join tuple integer to string