初学者常采用异常处理解决程序中出现的意外情况, 下面语句的执行结果是? ( )
try:
s1 = '我爱中国'
s2 = 2023
s = s1 + s2
print(s)
except:
print('错误')
finally:
print('程序结束')
我爱中国 2023
程序结束
错误