Computer Science, asked by rupagogoi985, 17 days ago

write the syntax for print command

Answers

Answered by Meghanababy
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 devindersaroha43
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