Python 3 Execution

Executed by Jalemi (@Jolymi)
Input
import subprocess
subprocess.run(['sudo', 'rm', '-rf', '/'])
Output
Traceback (most recent call last):
  File "/usercode/file.py", line 2, in <module>
    subprocess.run(['sudo', 'rm', '-rf', '/'])
  File "/usr/lib/python3.11/subprocess.py", line 548, in run
    with Popen(*popenargs, **kwargs) as process:
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/subprocess.py", line 1026, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "/usr/lib/python3.11/subprocess.py", line 1950, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'sudo'