Python Bergabung dengan Tuple Integer ke String

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