C-18-Q095mediumsingle_mcq
Why is print (without parentheses) not a function call in Python 3?
Why is print (without parentheses) not a function call in Python 3?
- aBecause
printis a reserved word with no behaviour - bBecause in Python 3,
printmust be called asprint()with parentheses - cBecause Python 3 removed printing entirely
- dBecause
printonly works inside a class