79765919

Date: 2025-09-16 08:04:23
Score: 0.5
Natty:
Report link

Try subprocess.Popen():

import subprocess

p = subprocess.Popen('ping 10.1.0.1')

p.wait()

print (p.poll())
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Bending Rodriguez