Python--检查ipV4的有效性

检查ipV4的有效性,有效则返回True,
否则返回False,(提示使用split函数进行分割)
#IP_input=input(‘请输入一个IPV4的地址:’)
#256.168.1.1
import sys
def func(IP):
IP_list=IP.split(’.’)
if len(IP_list)!=4:
print(‘地址无效,地址输入错误’)
elif len(IP_list)4:
for i in range(4):
if not IP_list[i].isdigit():
print(‘地址无效,地址输入错误!’)
break
return None
else:
if i
0:
if int(IP_list[i])<=0 or int(IP_list[i])>255:
print(‘地址无效,地址输入错误!!’)
break
else:
if int(IP_list[i])>255 or int(IP_list[i])<0:
print(‘地址无效’)
break
if i==3:
print(‘地址有效!’)

你可能感兴趣的:(个人python小程序)