In this lab, you will practice declaring variables of different types and printing them in formatted output.
Declare a string variable called name and assign it your name (e.g., "Alice")
name
"Alice"
Declare an integer variable called age and assign it an age (e.g., 25)
age
25
Declare a float variable called height and assign it a height in meters (e.g., 1.75)
height
1.75
Declare a boolean variable called is_student and assign it True or False
is_student
True
False
Print each variable using an f-string on its own line in this format:
Name: Alice
Age: 25
Height: 1.75
Student: True
f"Name: {name}"
float
bool