startswith函數用于檢查字符串是否以指定的前綴開頭,語法如下:
str.startswith(prefix[, start[, end]])
參數說明:
示例:
str1 = "Hello, world!"
print(str1.startswith("Hello")) # True
print(str1.startswith("hello")) # False
print(str1.startswith("Hello", 7)) # False
print(str1.startswith("world", 7, 12)) # True
以上示例中,str1以"Hello"開頭,所以第一個打印語句返回True;而第二個打印語句中"hello"與str1的開頭不匹配,所以返回False;第三個打印語句中從索引7開始的子字符串不是以"Hello"開頭,所以返回False;第四個打印語句中,從索引7到索引12的子字符串"world"是以"world"開頭的,所以返回True。