1.count 计算字符串中包含的多少个指定的子字符串
str1 = "adcaaa"
print(str1.count("a"))
结果:4
2.startswith 检查字符串是否已指定的字符串结尾 返回值 bool
3.endswith 检查字符串是否已指定的字符串结尾 返回值 bool
tel = input("请输入需要查询的手机号:")
if tel.isdigit() :
if len(tel) == 11 and tel[0] == 1:
if tel.startswith("139") or tel.startswith("187"):
print("中国移动")
elif tel.startswith("156") or tel.startswith("187"):
print("中国联通")
else:
print("中国电信")
else:
print("您的手机位数不对!!!或首位出错")
else:
print("请输入的手机号码有非法字符")
4.find 返回指定的字符串在字符串中出现的位置
-
1.只返回查找第一个出现的位置
-
2.str1.find(“a”,3) 指定下标位置开始查找
-
3.如果要查找的内容,不在该对象内&#