We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Exponents

Python has built-in support for exponents – something most languages require a math library for.

# reads as "three squared" or
# "three raised to the second power"
3**2
# 9

Sometimes exponents are also shown in text using the caret symbol (^):

5^3 = 53

Click to play video