0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
No active XP Potion
Accept a Quest
Login to submit answers
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
What is 2 ** 3?