The simplest way to produce output is using the print() function where you can pass zero or more expressions separated by commas. This function converts the expressions you pass into a string before writing to the screen.
Syntax: print(value(s), sep= ‘ ‘, end = ‘\n’, file=file, flush=flush)
Parameters:
value(s) : Any value, and as many as you like. Will be converted to string before printed
sep=’separator’ : (Optional) Specify how to separate the objects, if there is more than one.Default :’ ‘
end=’end’: (Optional) Specify what to print at the end.Default : ‘\n’
file : (Optional) An object with a write method. Default :sys.stdout
flush : (Optional) A Boolean, specifying if the output is flushed (True) or buffered (False). Default: FalseReturns: It returns output to the screen.
Code #1: Using print() function in Python(2.x)
# Python 2.x program showing # how to print data on # a screen # One object is passed print "GeeksForGeeks" # Four objects are passed print "Geeks", "For", "Geeks", "Portal" l = [1, 2, 3, 4, 5] # printing a list print l |
GeeksForGeeks Geeks For Geeks Portal [1, 2, 3, 4, 5]
Code #2 : Using print() function in Python(3.x)
# Python 3.x program showing # how to print data on # a screen # One object is passed print("GeeksForGeeks") x = 5# Two objects are passed print("x =", x) # code for disabling the softspace feature print('G', 'F', 'G', sep ='') # using end argument print("Python", end = '@') print("GeeksforGeeks") |
GeeksForGeeks x = 5 GFG Python@GeeksforGeeks
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.
Recommended Posts:
- Program to print its own name as output
- Print powers using Anonymous Function in Python
- Output of Python Program | Set 1
- Output of Python Program | Set 3
- Output of Python program | Set 5
- Output of Python programs | Set 9 (Dictionary)
- Output of Python Programs | Set 22 (Loops)
- Output of Python Programs | Set 24 (Dictionary)
- Generate two output strings depending upon occurrence of character in input string in Python
- Output of Python Programs | (Dictionary)
- Python | Output Formatting
- Python | Testing Output to stdout
- Python | Logging Test Output to a File
- Input and Output in Python
- Python VLC MediaPlayer – Getting Audio Output Devices
- Python VLC Instance - Enumerate the defined audio output devices
- Output of Python Program - Dictionary (set 25)
- How to widen output display to see more columns in Pandas dataframe?
- Different Input and Output Techniques in Python3
- Biopython - Sequence input/output
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
