try:
x = "hello" + 15
except TypeError:
print("Please convert to string before concatenate")
except:
print("Something else went wrong")