Revision history of "Check if IP is valid"

From DevOps Notebook

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 10:16, 16 April 2020MilosZ talk contribs 457 bytes +457 Created page with "Method 1: <syntaxhighlight lang="python"> import socket try: socket.inet_aton(addr) # legal except socket.error: # Not legal </syntaxhighlight> Method 2: <syntaxh..."