You are here : python_3Built-in Functionsprint

print() - Built-in Functions

Print objects to the text stream file, separated by sep and followed
by end.  sep, end and file, if present, must be given as keyword
arguments.


Syntax

print(*objects, sep=' ', end='
', file=sys.stdout, flush=False)


Example


Output / Return Value


Limitations


Alternatives / See Also


Reference