C-16-Q131mediumsingle_mcq
The line age = 25; print(age) will print:
The line age = 25; print(age) will print:
- a'age'
- b25
- cage
- dnothing
ব্যাখ্যা
age is a variable holding the integer 25, and print(age) outputs the value stored in the variable, not the name itself. Since the variable is written without quotes, Python prints its value 25.