chenjj100419
chenjj100419
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
chenjj100419的博客
全部文章
(共1篇)
题解 | #写一段程序判断IP字符串是否属于内网IP#
先附上代码 ip = input() ipLit = ip.split('.') ipBanList = ['10', '127', '192', '172'] if ipLit[0] in ipBanList: print(1) else: print(0)这题思路很简单 首先使用...
python3
bilibili
解题思路
2021-08-22
2
632