...

/

Console Output

Console Output

Learn how to print the output on the console in Python.

Print output on the console

The built-in function print() is used to send output to the screen.

The print() function has the following form:

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