Why does this raise TypeError?
The student wanted to print "Total: 25" but Python raises TypeError. The variable `count` was read from a CSV (so it's a string). Identify the type mismatch and fix it.
count = "20"
bonus = 5
print("Total: " + count + bonus)
Step 1 — Predict the error
Read the program. Which kind of error (or non-error) will Python raise?