C-16-Q086mediumsingle_mcq
When a variable is printed inside print(), its name is written:
When a variable is printed inside print(), its name is written:
- ainside single quotes
- bdirectly, without any quotes
- cinside double brackets
- dwith a
$prefix
ব্যাখ্যা
A variable is written directly inside print() without quotes so that Python outputs its stored value. Placing the name in quotes would instead print the name as literal text.