[Solved] What’s wrong here? (concatenation) in Python


I think the recommended answer would be something along these lines:

hello="Hello"
world='World'

hello_world=hello + ' ' + world
print=hello_world

Run output: Hello World

solved What’s wrong here? (concatenation) in Python