Printing to stdout in Python: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 23: Line 23:
this is a
this is a
multi-line string
multi-line string
</syntaxhighlight>
<code>print()</code> add spaces between its arguments:
<syntaxhighlight lang='py'>
print('A', 'B', 'C')
</syntaxhighlight>
results in:
<syntaxhighlight lang='text'>
A B C
</syntaxhighlight>
</syntaxhighlight>



Revision as of 19:35, 18 June 2022

Internal

Overview

To send a string followed by new line to stdout:

print('something')

To avoid sending a new line at the end:

print('something', end='.')
print('something', end='')

print() strips quotes from strings, resolves escaped characters and displays the resulting content:

print('this is a\nmulti-line string')

results in:

this is a
multi-line string

print() add spaces between its arguments:

print('A', 'B', 'C')

results in:

A B C

Redirect to stderr

print('something', file=sys.stderr)