串联和白色space

Contatenation and white space

"使用 + 符号组合两个字符串称为串联。 使用 "hello" 和 "world" 变量获取 "Hello World" 字符串

hello = "Hello"
world = 'World'

hello_world = hello + world

print(hello_world)      # Note: you should print "Hello World"

如果要打印 "Hello World" 并在中间插入 space,只需执行以下操作:

hello = "Hello"
world = 'World'

hello_world = hello + " " + world

print(hello_world)  
world = 'World'
hello_world = ' '.join((hello, world))
print(hello_world)