I can not imagine how to correctly output an array of type integer as a string separated by a space? There are options? Array view:

z = [1,2,3,4,5,6,7] 

    4 answers 4

     print " ".join(map(str, z)) 
       for i in z: print(i, end = " ") 
         print ' '.join(z) 
           print ' '.join(str(v) for v in z)