Occurs when trying to concatenate a string with an integer.
value = "10"
result = value + 5
print(result)TypeError: can only concatenate str (not "int") to str
value = "10"
result = int(value) + 5
print(result)Mixed string and integer without noticing the type difference.