To achieve the output format "This is the value of variable one: <value of variable>", you can use the following line of code:
print('This is the value of variable one:', var)
So, the correct response from your options is:
print(‘This is the value of variable one:’, var)
This will correctly display the message along with the value contained in the variable var
.