Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (20.3k points)

I notice that there is such an expression "1e-5" in Python(probably in other languages also)

1. What is the name of this notation?

2. what does it denote in math?

3. 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?

4. Why should we use this way instead of some other python math operation like pow() etc?

3 Answers

0 votes
by (40.7k points)

It is nothing but a scientific notation. It means that 1 × 10−5. In other words, 0.00001.

If you wish to learn more about Python, visit the Python tutorial and Python course by Intellipaat.

0 votes
by (106k points)

The meaning of e in python is 10 ** -5, i.e. 10 to the power of negative 5, 1 divided by 10 to the power of 5, or 0.00001.

0 votes
by (3.1k points)

Scientific notation or exponential notation is called the notation "1e-5," a notation used to express numbers very large or very small with powers of ten; for instance, 1 x 10^(-5). Here, the 'e' stands for "exponent," that is, the power of ten, and it often is used in combination with other characters, such as 'E' or 'x,' depending on the programming language being used. Scientific notation is used in this problem to make reading easier and to reduce complicated computations, especially when one encounters extreme values. Although such functions as `pow()` may be helpful for special purposes of exponentiation, scientific notation provides a precise, compact representation of the numbers. So in simple 1e-5 represents 1 x 10 ^ (-5)

31k questions

32.8k answers

501 comments

693 users

Browse Categories

...