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
In Python, numbers without a decimal point are called Integers
.
Integers are simply whole numbers, positive or negative. For example, 3
and -3
are both examples of integers.
A float is, as you may have guessed, the number type that allows for decimal values.
my_int = 5
my_float = 5.5
____
and ____
are numerical types in Python.