Consider a variable var with some value in it. How can we achieve an output of this format:%0D%0A"This is the value of variable one: <value of variable>"?(1 point)%0D%0AResponses%0D%0A%0D%0Aprint(‘This is the value of variable’, one, ‘:’)%0D%0Aprint(‘This is the value of variable’, one, ‘:’)%0D%0A%0D%0Aprint(‘This is the value of variable one:’, var)%0D%0Aprint(‘This is the value of variable one:’, var)%0D%0A%0D%0Aprint(This is the value of variable one: one)%0D%0Aprint(This is the value of variable one: one)%0D%0A%0D%0Aprint(‘This is the value of variable one:’)

1 answer

print('This is the value of variable one:', var)