write the syntax for print command
Answers
Answered by
0
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.
Answered by
2
Answer:
Explanation:
print() Syntax. The full syntax of print() is: print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
print() Parameters. objects - object to the printed. ...
print() Return Value. ...
Example 1: How print() works in Python? ...
Example 2: print() with separator and end parameters.
Similar questions