Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 188 Bytes

File metadata and controls

11 lines (7 loc) · 188 Bytes

Output to stderr in Python

Yet another way to output to the standard error stream in Python:

import sys

print("...", file = sys.stderr)

— Oliver Frolovs, 2020