I'm looking for a way to suppress scientific Notation on arrays that output floats of different lengths. All of the guides I've looked at show you how to suppress scientific notation for a singular value when you already know how many decimal places it is with code such as:
output=f"{num:8f}"
However is there a way to do this when iterating through a list where some values may be 0.0000001
(7 decimal places) some may be 0.000001
(6 decimal places), some may be 0.00000001
(8 decimal places), etc.?
All I want is a function that when iterating through a list and outputting values with large numbers of decimal places, it always just output the true value of the float, not its scientific notation, regardless of its number of decimal places