SyntaxFix
Write A Post
Hire A Developer
Questions
sys.exit() should return an integer, not a string:
sys.exit()
sys.exit(1)
The value 1 is in $?.
1
$?
$ cat e.py import sys sys.exit(1) $ python e.py $ echo $? 1
Edit:
If you want to write to stderr, use sys.stderr.
sys.stderr