I would like to save data to a txt file. I use for this
PutAppend[ " x= ", N[x], " y= ", N[y], "D:/Users/.../file.txt"]]
But the number of decimal places that Mathematica writes to the file does not suit me, I would like to have more decimal places, for example 30. So I rewrote this code as follows:
PutAppend[ " x= ", N[x,30], " y= ", N[y,30], "D:/Users/.../file.txt"]]
But the number of decimal places recorded in this file remains unchanged and ranges from 14 to 17. Could you explain to me how I can save the number of decimal places I need in a file?


