IP地址-python-正则表达式 摘要:解题思路:正则表达式区间0-9 \d 10-99 [1-9]\d 100-199 1\d{2} 200-249 2[0-4]\d …… 题解列表 2024年08月11日 0 点赞 0 评论 151 浏览 评分:0.0
无聊的星期六 摘要:解题思路:正则就不用了。注意事项:参考代码:import sys for line in sys.stdin: if line=="End of file": exit(…… 题解列表 2024年04月20日 0 点赞 0 评论 99 浏览 评分:0.0
新正则表达式 摘要:import re # 定义一个正则表达式模式来匹配合法的IP地址 ip_pattern = r'^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3…… 题解列表 2023年10月12日 0 点赞 0 评论 131 浏览 评分:9.9
IP判断——python 摘要:解题思路:注意事项:参考代码:while True: try: L = list(map(str,input().split('.'))) s = 0…… 题解列表 2023年03月26日 0 点赞 0 评论 63 浏览 评分:0.0
1116: IP判断(python) 摘要:解题思路:1、EOF即为"End of file"缩写2、四个整数中不允许有前导零存在:即当数字长度大于一位时(0是可以的),第一位为0的数都是含有前导零的数参考代码:while True: t…… 题解列表 2023年01月17日 0 点赞 0 评论 253 浏览 评分:9.9
小南解题--ip判断--62ms 摘要:'''2022年03月19日 19:34:06.219zgn946''' #循环出[0,255]范围的列表aa=[str(ii) for ii in r…… 题解列表 2022年06月01日 0 点赞 0 评论 104 浏览 评分:0.0
编写题解 1116: IP判断 摘要:解题思路:注意事项:参考代码:while True: s=input() if s=='End of file': break a,b,c,d=s.sp…… 题解列表 2022年04月24日 0 点赞 0 评论 317 浏览 评分:0.0
编写题解 1116: IP判断 摘要:解题思路:split可以设定分隔符,非常好用。注意事项:参考代码:while True: l = input().split('.') if l == 'E…… 题解列表 2022年03月09日 0 点赞 0 评论 181 浏览 评分:8.0
IP判断 用try来判断字母 摘要:解题思路:见代码注意事项:代码段较长,判断多,较复杂try 的应用原理:因为在程序执行时,异常报错提示可能会影响到输出结果的显示,此时就可以使用try:...except:...进行异常处的处理,有错…… 题解列表 2022年02月06日 0 点赞 0 评论 289 浏览 评分:9.0
IP判断(Python) 摘要:解题思路:注意事项:参考代码:while(True): List=input() if(List=='End of file'): break else…… 题解列表 2022年02月05日 0 点赞 1 评论 378 浏览 评分:9.9