Python小程序

判斷一個字符串是不是合法ip地址 #! usr/bin/env/ python #_*_ coding:utf-8 _*_ #判斷一個字符串是不是合法IP地址 def legalIP(oneStr): if '.' not in oneStr: #not in 判斷某個字符串在不在原字符串中 return False elif oneStr.count('.')!=3: #count('.') 數
相關文章
相關標籤/搜索