Creating a float
Before we start looking for Bayes' kidnapper, we need to fill out a Missing Puppy Report with details of the case. Each piece of information will be stored as a variable.
We define a variable using an equals sign (=
). For instance, we would define the variable height
:
height = 24
In this exercise, we'll be defining bayes_age
to be 4.0
months old. The data type for this variable will be float, meaning that it is a number.
This exercise is part of the course
Introduction to Data Science in Python
Exercise instructions
- Define a variable called
bayes_age
and set it equal to4.0
. - Display the variable
bayes_age
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Fill in Bayes' age (4.0)
____
# Display the variable bayes_age
____(____)