第16584题 判断
判断给定Python字符串拼接程序的运行结果是否为hi lanxi!
s1 = "hi"
s2 = " lanxi"
s3 = "!"
print(s1 + s2 + s3)
A

正确

B

错误