C-15-Q125mediumsingle_mcq
Inside print(), the text to be printed should be wrapped in:
Inside print(), the text to be printed should be wrapped in:
- aSquare brackets
- bSingle quotation marks
- cCurly braces
- dPipes
ব্যাখ্যা
Text passed to print() must be enclosed in quotation marks to be treated as a string literal, e.g. print('text'). Without quotes, Python would try to interpret the text as code (variables or commands).