代码示例:(标识:python_string_concat_1)
python_string_concat_1.py
a = "Hello"
b = "World"
c = a + b
print(c)
运行结果: