Exercise 6 · Chapter: VariablesRequired+50 XP
Fix the Types
The variables below have the wrong types. Fix them so the program works correctly.
Expected output:
Age: 10 Name: Alex
Need a hint?
3 available · costs 5 XP each
python
age = "ten"
name = 0
print("Age:", age)
print("Name:", name)
Output
Run your code to see the output here.