You are here : python_3socketsocketinet_ntop

socket.inet_ntop() - socket

Convert a packed IP address (a bytes-like object of some number of
bytes) to its standard, family-specific string representation (for
example, '7.10.0.5' or '5aef:2b::8').
inet_ntop() is useful when a library or network protocol returns an
object of type struct in_addr (similar to inet_ntoa()) or
struct in6_addr.


Syntax

socket.inet_ntop(address_family, packed_ip)


Example


Output / Return Value


Limitations


Alternatives / See Also


Reference