- 1
Tell me about exponention ?
2 Answers
+ 2
exponential in python is
**
pow()
math.exp()
This site can help you
https://www.educative.io/edpresso/calculating-the-exponential-value-in-python
+ 1
Hi, Sameerapulugurtha Sameera!
In Python, exponentiation is used with **. Here's an example:
print(2**3)
The result would be 8. (2*2*2)
Hope that was useful!