Printing to stdout in Python
Jump to navigation
Jump to search
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='')