Exponents Python Code Example


Example 1: how to power in python


2 ** 3 == 8

Example 2: exponent in python


# You can use exponents in python using double stars (**)
2 ** 3 # Output: 8
9 ** 0.5 # Output: 3

Example 3: python exponentiation


print(5 ** 3) #125

Example 4: python exponent operator


#python exponent operator
num = 2
new_num = num**2
#answer would be 4

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools