Guest User

Untitled

a guest
May 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. >>> import os
  2. >>> def ping(ip, count=4):
  3.     command = "ping -c %d %s" % (count, ip)
  4.     os.system(command)
  5.  
  6.    
  7. >>> ping("192.168.1.1")
  8. >>>
Add Comment
Please, Sign In to add comment