What is the value of the variable string after the execution of the following code?

What is the value of the variable string after the execution of the following code?


string = 'Hello'


string += ' world'


Answer: 'Hello world'


Learn More :