I am working with the numpy array x = np.arange (2.5,7.0,0.01). If I give the commands print(x) and print(*x) I obtain different results.
x = np.arange (2.5,7.0,0.01)
print(x)
print(*x)