I am trying to make a hacking tool in python and I need to run a PowerShell command (ping) but I don't want the "Reply from bytes=32 TTL=128" to appear.
import subprocess
ip_check = input('What IP would you....: ')
subprocess.call('powershell.exe ping ' + ip_check, shell=True)