I need to create an array of a large number of elements, everything works fine when the number of elements is <= 1000. If there are more elements, then it is displayed in this form:
[32.78088929 67.80323438 14.94252882 ... 5.25943371 22.08549083 12.54776541] Here is the code:
arr = np.random.triangular(start,mode,end,amount) print(arr) with open("data/array.txt","w", newline='') as out: print(arr,file=out,sep=" ")