Zend certified PHP/Magento developer

Will running a python script as admin cause all subprocesses to run with elevated rights?

I am on windows 8.1, python 3.

If I am using subprocess.run() to run a cmd command (particularly netsh export) and I run the python file as admin, will the command given to subprocess also be run as admin? (I have not specified any other argument)

If not, is it possible to do so by specifying any args of subprocess.run ?