TypeErrorConcatenation
print("TypeError & Concatenation")
string_value = "ABC"
integer_value = 123
new_string = string_value + integer_value
# TypeError exception is thrown/raised.
# new_string = string_value + str(integer_value)
# TypeError exception is NOT thrown/raised.
# Calling the str() function removes the TypeError.
print(new_string)INFO