Answers for "python join tuple integer to string"

0

python join tuple integer to string

e = ('ham', 5, 1, 'bird')
print( ','.join(map(str,e)) ) 			# 'ham,5,1,bird'
print( ''.join(map(str,e)) ) 			# 'ham51bird'
Posted by: Guest on May-13-2021

Code answers related to "python join tuple integer to string"

Python Answers by Framework

Browse Popular Code Answers by Language