Pehnt
0
Q:

how to print list without brackets python

# you're using Python 3, or appropriate Python 2.x version with from __future__ import print_function then:

data = [7, 7, 7, 7]
print(*data, sep='')
5
print(', '.join(names))
0

New to Communities?

Join the community