ipClass2num = { 'A':0, 'B':0, 'C':0, 'D':0, 'E':0, 'ERROR':0, 'PRIVATE':0, } # 私有IP地址和A,B,C,D,E类地址是不冲突的,也就是说需要同时+1 def check_ip(ip:str): ip_bit = ip.split('.') if len(ip_bit) != 4 or '' in ip_bit: #ip 的长度为4 且每一位不为空 return False for i in ip_bit: ...