How to print list (array) without brackets in a single row in Python

4 Answers

0 votes
arr = [1, 2, 3, 4, 5, 6]

print(str(arr)[1:-1])

'''
run:

1, 2, 3, 4, 5, 6

'''

 



answered Feb 12, 2016 by avibootz
0 votes
arr = [1, 2, 3, 4, 5, 6]

print(*arr)

'''
run:

1 2 3 4 5 6

'''

 



answered Feb 12, 2016 by avibootz
0 votes
arr = [1, 2, 3, 4, 5, 6]

print(",".join("{0}".format(n) for n in arr))

'''
run:

1,2,3,4,5,6

'''

 



answered Feb 12, 2016 by avibootz
0 votes
arr = [1, 2, 3, 4, 5, 6, 7]

print(" ".join("{0}".format(n) for n in arr))

'''
run:

1 2 3 4 5 6 7

'''

 



answered Feb 12, 2016 by avibootz
...