Python Run Command PowerShell dan Dapatkan Output

import subprocess

p = subprocess.run("[COMMAND]", shell=True ,capture_output=True,text=True)#!!if windows shell=True!!

outPut = p.stdout
5alid oo