In my program I am printing float numbers to file. There is high precision of these numbers so there are many digits after decimal point, i.e number 0.0433896882981. How can I reduce number of digits that I print into file? So I would print, say, 0.043 instead of 0.0433896882981.
Share
You can use basic string formatting, such as:
Here, the
%.4ftells Python to limit the precision to four decimal places.