month


私信TA

用户名:lanqiaobeiTest

访问量:2356

签 名:

等  级
排  名 11174
经  验 1044
参赛次数 1
文章发表 7
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

正则匹配通式 

^((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}$
注意事项:
- 注意每项开头包含负号的项

参考代码:

import re
pattern = re.compile(r'^((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})(\.((2(5[0-5]|[0-4]\d))|[0-1]?\d{1,2})){3}$')

InputStr = input().strip()
while InputStr != "End of file":
    if not pattern.search(InputStr):
        print("N")
    else:
        print("Y")
    InputStr = input().strip()


 

0.0分

0 人评分

  评论区

  • «
  • »