Exercise 6 · Chapter: Linear ProgramsRequired+50 XP
Fix the Concatenation
This program tries to join text and a number, but it crashes. Fix it!
Expected output:
Age: 10
Hint: You can't use + to join a string and a number directly.
Need a hint?
3 available · costs 5 XP each
python
age = 10
print("Age: " + age)
Output
Run your code to see the output here.