Define print function
Answers
Answer:
Python print() Function The print() function prints the specified message to the screen, or other standard output device. The message can be a string, or any other object, the object will be converted into a string before written to the screen.
Explanation:
It can take any string as input example
print("Please mark me as the brainliest") would output as :
Please mark me as the brainliest
Answer:
The print function in Python is a function that outputs to your console window whatever you say you want to print out.
Explanation:
The print() function prints the specified message to the screen, or other standard output device. The message can be a string, or any other object, the object will be converted into a string before written to the screen.