-2
Whenever I try to do calculations in python with large numbers, it ends up abbreviating the result.
For example:
a = 8682372684397235357614080000
b = 86400
c = a/b
print(c)
1.0049042458793097e+23 \\resultado
I’d like to print the whole number.
print(f'{c:f}')
see Mini format specification language– Augusto Vasques
print(round(c))
– Alexandre Simões