C-15-Q133mediumsingle_mcq
The general syntax to print a custom message in Python is:
The general syntax to print a custom message in Python is:
- a
print('your text') - b
print = your text - c
type your text - d
echo: your text
ব্যাখ্যা
The general form is print('your text'), placing the desired message in quotes inside the print() function. The other options are not valid Python syntax.