dont let python do scientif number code example
Example 1: python print do not use scientific notation
num = 5 / 40000000
output = f"{num:.9f}"
print(output)
Example 2: python - remove scientific notation
import pandas as pd
pd.options.display.float_format = '{:.2f}'.format