连接和空白区域

时间:2015-01-02 03:04:34

标签: python concatenation

“使用+符号组合两个字符串称为连接。 使用“hello”和“world”变量来获取“Hello World”字符串“

hello = "Hello"
world = 'World'

hello_world = hello + world

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

2 个答案:

答案 0 :(得分:1)

如果你想打印" Hello World"如果介于两者之间,请执行以下操作:

hello = "Hello"
world = 'World'

hello_world = hello + " " + world

print(hello_world)  

答案 1 :(得分:0)

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