python2 print array without brackets code example
Example 1: how to print list as matrix in python without brackets
# 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: how to print list without brackets python
print(', '.join(names))