1,字符串常量可以直接连接,
连接的两个字符串之间加不加空格均可
# 字符串常量可以直接连接,
# 两个字符串之间不加空格
s = 'hello'',world'
print(s) # hello,world
# 两个字符串之间加空格
s = 'hello' ',world'
print(s) # hello,world
运行结果:
hello,world
hello,world
2, 三个字符串的连接,中间加了空格
s = 'hello' ', ' 'world'
print(s) # hello, world
运行结果:
hello, world
3,直接连接只能用于字符串常量,
不能用于字符串变量,否则会引起报错:
str1 = "hello,"
str2 = "world"
str3 = str1 str2
运行结果:
<