Str1 = 'Hello, Dear friends, '
Str2 = 'welcome to CSDN '
# 字 符 串 拼 接
print(Str1 + Str2)
#乘法

print(Str2 * 2)

运行结果:

Python数据类型-字符串拼接_python