Which one of these is the correct way to display the variable var, containing number 1 as value, to the console?(1 point)

Responses

print(‘1’)
print(‘1’)

print(1)
print(1)

print(‘var’)
print(‘var’)

print(var)

User Icon for Bot GPT 3.5 Bot GPT 3.5 answered
9 months ago

print(var)