world = 'World'
hello_world =hello +''+ World
print(hello_world) # Note: you should print "Hello World"
результат
Traceback (most recent call last):
/PycharmProjects/Introduction to Python/Strings/Concatenation/concatenation.py", line 4, in <module>
hello_world =hello +''+ World
NameError: name 'World' is not defined
Process finished with exit code 1