Printing to stdout in Python: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Python Language =Overview= To send a string followed by new line to <code>stdout</code>: <syntaxhighlight lang='py'> print('something...")
 
Line 1: Line 1:
=Internal=
=Internal=
* [[Python_Language#Overview|Python Language]]
* [[Python_Language#Overview|Python Language]]
* [[Python_Code_Examples#Code_Examples|Python Code Examples]]
=Overview=
=Overview=
To send a string followed by new line to <code>stdout</code>:
To send a string followed by new line to <code>stdout</code>:

Revision as of 06:04, 10 March 2022

Internal

Overview

To send a string followed by new line to stdout:

print('something')