How to print a list with integers without the brackets, commas and no quotes?

python, python-2.7, python-3.x

Solution

If 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='')

Otherwise, you'll need to convert to string and print:

print ''.join(map(str, data))

Problem

This is a list of Integers and this is how they are printing: ``` [7, 7, 7, 7] ``` I want them to simply print like this: ``` 7777 ``` I don't want brackets, commas or quotes. What to do?

Original source

Related problems