I notice that there is such an expression "1e-5" in Python(probably in other languages also)
What is the name of this notation?
what does it denote in math?
What does 'e' mean? It's the first time I see a character helps to denote some value, are there other characters also help do so?
Why should use this way instead of some other python math operation like pow() etc.
1e5 is a number expressed using scientific notation and it means 1 multiplied by 10 to the 5th power (the e meaning 'exponent') so 1e5 equals 1*100000 and is equal to 100000 , the three notations are interchangeable meaning the same. Follow this answer to receive notifications.
It's know as E notation, which is plain text representation of scientific notation. 1.234e+56 means 1.234 * 10**56 or in more human readable form 1.234 × 1056. Follow this answer to receive notifications. answered Feb 28, 2013 at 15:00. vartec.
E-notation is just another way of writing scientific notation. For very small numbers, like 0.0000000000001752, a negative exponent is used. The scientific notation would be 1.752 x 10-13, and the E-notation would be 1.752e-13. A negative exponent means to move the decimal place to the left instead of the right.
To specify a floating point number, either include a decimal point somewhere in the number, or use exponential notation, for example 1e3 or 1E3 to represent 1000 (1 times 10 to the third power).
It is scientific notation. It means 1 × 10−5. In other words, 0.00001.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With