Fill in the Blanks

Variable Assignment

Practice creating and assigning variables

Instructions

Complete the variable assignments below

Complete the Code

# Assign variables
 = 'Alice'
 = 25
 = 5.8

print(f'Name: {name}')
print(f'Age: {age}')
print(f'Height: {height}')
Instructions

Click on the blank areas in the code above and type your answers directly.

Exercise Info

Type Fill in the Blanks
Difficulty
Points 10

Hints

Click "Get Hint" to reveal helpful tips for solving this exercise.