print() | Python
The print() function prints the given object to the standard output device (screen) or to the text stream file. Syntax of print() print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) where objects - object to the printed. * indicates that there may be more than one object sep - objects are separated [...]