I have this python code:
import os
try:
os.system('wrongcommand')
except:
print("command does not work")
The code prints:
wrongcommand: command not found
Instead of command does not work. Does anyone know why it’s not printing my error message?
If you want to have an exception thrown when the command doesn’t exist, you should use
subprocess:Come to think of it, you should probably use
subprocessinstead ofos.systemanyway …