The correct way to display the variable var
, which contains the number 1 as its value, to the console is:
print(var)
Therefore, the correct option is:
print(var)
Responses
print(‘1’)
print(‘1’)
print(‘var’)
print(‘var’)
print(var)
print(var)
print(1)
1 answer
The correct way to display the variable var
, which contains the number 1 as its value, to the console is:
print(var)
Therefore, the correct option is:
print(var)