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?

2 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.

Browse Categories

...