# 1605.py a=(88,20,17,4,58) v=map(str,a) print v # ['88', '20', '17', '4', '58'] print ' '.join(v) # 88 20 17 4 58