<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import numpy as np

a = np.array([0, 1, 2, 3])


np.savetxt("foo.txt", a)
b = np.loadtxt("foo.txt")
print(b)
</pre></body></html>