python中的endswith()函數

python中的endswith()函數 函數意義爲 判斷字符串是否以指定的x結尾 函數格式爲 str=「字符串」 ① str.endswith(x,star,end) x:被指定的,可以爲單個字符,字符串,甚至可以是元組 star:字符串索引的起始位置,默認爲0 end:字符串索引的截止位置,默認爲字符串的最後位置 ② str[star:end].endswith(x) 返回值爲邏輯值 Fals
相關文章
相關標籤/搜索