How to print a Numpy array without brackets? May 1, 2023 by Tarik You can use the join method from string: >>> a = [1,2,3,4,5] >>> ' '.join(map(str, a)) "1 2 3 4 5"