[Python] Emulare il comando ping...

Marco Beri marcoberi a gmail.com
Mer 14 Mar 2012 12:16:51 CET


2012/3/14 Val <donchisciotte_v a yahoo.it>

> import socket
>
>         try:
>             host = socket.gethostbyaddr(IP_curr)[0]
>         except socket.herror:
>             host = 0
>
>
>        if host == 0:
>             msg = msg + "OFFLINE"
>         else:
>             msg = msg + str(host)
>
>         print msg
>

Non so se funziona, ma come codice io lo scriverei cosė:

        try:
            msg += str(socket.gethostbyaddr(IP_curr)[0])
        except socket.herror:
            msg += "OFFLINE"

Ciao.
Marco.
-------------- parte successiva --------------
Un allegato HTML č stato rimosso...
URL: <http://lists.python.it/pipermail/python/attachments/20120314/57d94bad/attachment.html>


Maggiori informazioni sulla lista Python