Write the functions of print command with example.
Answers
Answered by
2
Answer:
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:
plz mark me as bainliest
Answered by
3
Answer:We use the print() function to output data to the standard output device (screen). We can also output data to a file, but this will be discussed later. An example of its use is given below. ... The file is the object where the values are printed and its default value is sys. stdout (screen)
Similar questions