Beginner
R
Q3 / 100
How do you print the value of a variable x to the console?
Correct! Well done.
Incorrect.
The correct answer is B) print(x)
B
Correct Answer
print(x)
Explanation
print() outputs the value of an object to the console; typing just "x" at the top level also auto-prints it.
Progress
3/100