法律是道德的底线python中startswith()函数的⽤法startswith()函数
描述:判断字符串是否以指定字符或⼦字符串开头。
语法:dswith("suffix", start, end) 或
str[start,end].endswith("suffix") ⽤于判断字符串中某段字符串是否以指定字符或⼦字符串结尾。
—> bool 返回值为布尔类型(True,Fal)
suffix — 后缀,可以是单个字符,也可以是字符串,还可以是元组("suffix"中的引号要省略)。
start —索引字符串的起始位置。
end — 索引字符串的结束位置。
猴配什么生肖最好注意:空字符的情况。返回值通常也为True
程序⽰例:
str = "hello,i love python"
print("1:",str.startswith("h"))
print("2:",str.startswith("l",2,10))# 索引 llo,i lo 是否以“n”结尾。
print("3:",str.startswith("")) #空字符
print("4:",str[0:6].startswith("h")) # 只索引 hello,
print("5:",str[0:6].startswith("e"))
神话人物有哪些print("6:",str[0:6].startswith(""))咖啡排行榜
print("7:",str.startswith(("h","z")))#遍历元组的元素,存在即返回True,否者返回Fal
print("8:",str.startswith(("k","m")))
u盘写入速度
程序运⾏结果:
1: True
工地实习报告2: True
在绝望中寻找希望3: True
世间没有后悔药4: True
5: Fal
6: True
7: True
8: Fal