try:
x = "hello" + 15 # 尝试字符串与数字相加
except TypeError:
print("请先将数字转换为字符串再进行连接")
except:
print("发生了其他错误")