Tell me about exponention ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Tell me about exponention ?

17th Jun 2021, 9:18 AM
Sameerapulugurtha Sameera
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
17th Jun 2021, 9:43 AM
aspad🇮🇷
aspad🇮🇷 - avatar
+ 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!
17th Jun 2021, 9:51 AM
HNL
HNL - avatar