Python: print() function
print() function
The print() function is used to 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.
Version:
(Python 3.2.5)
Syntax:
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
Parameter:
Name | Description | Required / Optional |
---|---|---|
objects | Object to the printed. * indicates that there may be more than one object | Optional |
sep | Objects are separated by sep. Default value: ' ' | Optional |
end | Specify what to print at the end. Default is line feed ('\n'). |
Optional |
file | An object with write(string) method. Default: sys.stdout, which prints objects on the screen. | Optional |
flush | The stream is forcibly flushed If flush is True. Default value: False | Optional |
Example: Python print() function
Output:
Python Example. x = 6 x= 6 = y
Example: Print two messages, using specific separator
Output:
Python-Exercises
Pictorial Presentation:

Python Code Editor:
Previous: pow()
Next: property()
Test your Python skills with w3resource's quiz
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics