Skip to the content.

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