python printing a list without brackets code example
Example 1: print list without brackets int 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='')
Example 2: python list to string without brackets
print(', '.join(names))