Exerpad
🔥0
0 XP
Lv.1 Beginner
Log In

Fix the Types

The variables below have the wrong types. Fix them so the program works correctly.

Expected output:

text
Age: 10
Name: Alex

💡 Hints

?Hint 1
🔒Hint 2
🔒Hint 3
python
age = "ten"
name = 0

print("Age:", age)
print("Name:", name)