C-16-Q031mediumsingle_mcq
Why can't print itself be used as a variable name?
Why can't print itself be used as a variable name?
- aIt is too short
- bIt is a Python keyword/reserved name used as a function
- cIt is reserved by the OS
- dIt contains a vowel
ব্যাখ্যা
print is a built-in function name in Python, and reusing it as a variable would overwrite that function so it can no longer be called. Reserved/built-in names like this should not be used as identifiers.