text = 'Hello'
# add condition here...
if
text = text + ' World'
print(text)
# expected output: Hello World
Python
Setting up Python environment...
Output
text = 'Hello'
# add condition here...
if
text = text + ' World'
print(text)
# expected output: Hello World
Setting up Python environment...