验证用户输入的IP有效的最佳方法是什么?它以字符串形式出现。
不要解析它。只是问问。
import socket try: socket.inet_aton(addr) # legal except socket.error: # Not legal