Posts by Camila Andrade • 11 points
1 post
-
1
votes2
answers5265
viewsA: Scientific notation in Python
Hello, Try to use the method format_float_scientific library numpy. Follow an example: import numpy as np number = 14366.081836478248 print(np.format_float_scientific(np.float32(number))) You can…