赵乾舟 发表于 2021-8-15 15:59:45

字符串拼接

a='zhao'
b='qian'
c = 'zhou'
print(a+b+c)#zhaoqianzhou
print(a,b,c)#zhao qian zhou


页: [1]
查看完整版本: 字符串拼接