码迷,mamicode.com
首页 > 编程语言 > 详细

python3 判断字符串是否为IP

时间:2019-01-22 15:02:16      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:import   字符   print   not   style   nbsp   imp   lse   col   

#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re

ip = "192.168.1.1"

ip = re.findall("^(1\d{2}|2[0-4]\d|25[0-5]|[1-9]\d|[1-9])\.(1\d{2}|2[0-4]\d|25[0-5]|[1-9]\d|\d)\.(1\d{2}|2[0-4]\d|25[0-5]|[1-9]\d|\d)\.(1\d{2}|2[0-4]\d|25[0-5]|[1-9]\d|\d)$", ip)
print(ip)

if not ip:
    print("no")
else:
    print("yes")

 

python3 判断字符串是否为IP

标签:import   字符   print   not   style   nbsp   imp   lse   col   

原文地址:https://www.cnblogs.com/37yan/p/10303724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!