I am attempting to save an array to a txt file, I used the following function:
numpy.savetxt('C:/Users/Adminstrator/Desktop/mesh/ELIST2-clean.txt',array2DClean, delimiter='\t')
The data in file are shown as following:
1.300000000000000000e+01 2.710000000000000000e+02 2.360000000000000000e+02 7.200000000000000000e+01 2.350000000000000000e+02
2.400000000000000000e+01 2.760000000000000000e+02 2.060000000000000000e+02 1.310000000000000000e+02 1.300000000000000000e+02
3.200000000000000000e+01 2.580000000000000000e+02 2.820000000000000000e+02 2.570000000000000000e+02 5.000000000000000000e+01
3.600000000000000000e+01 2.800000000000000000e+02 5.100000000000000000e+01 5.000000000000000000e+01 1.030000000000000000e+02
3.900000000000000000e+01 2.800000000000000000e+02 2.250000000000000000e+02 1.120000000000000000e+02 1.110000000000000000e+02
4.300000000000000000e+01 2.810000000000000000e+02 1.630000000000000000e+02 2.200000000000000000e+01 1.640000000000000000e+02
4.900000000000000000e+01 2.850000000000000000e+02 1.150000000000000000e+02 1.600000000000000000e+02 1.610000000000000000e+02
How can I format the numbers written to the file as whole integers without xe+y notation?