如果字符串以指定的值結(jié)尾,則endswith()方法返回True。如果不是,則返回False。
endswith()的語法為:
str.endswith(suffix[, start[, end]])
endwith()具有三個參數(shù):
suffix -要檢查的后綴字符串或元組
start(可選)- 在字符串中檢查suffix開始位置。
end(可選)- 在字符串中檢查suffix結(jié)束位置。
endswith()方法返回一個布爾值。
字符串以指定的值結(jié)尾,返回True。
如果字符串不以指定的值結(jié)尾,則返回False。
text = "Python is easy to learn." result = text.endswith('to learn') # 返回 False print(result) result = text.endswith('to learn.') # 返回 True print(result) result = text.endswith('Python is easy to learn.') # 返回 True print(result)
運行該程序時,輸出為:
False True True
text = "Python programming is easy to learn." # start 參數(shù): 7 # "programming is easy to learn." 為被檢索的字符串 result = text.endswith('learn.', 7) print(result) # 同時傳入 start 和 end 參數(shù) # start: 7, end: 26 # "programming is easy" 為被檢索的字符串 result = text.endswith('is', 7, 26) # 返回 False print(result) result = text.endswith('easy', 7, 26) # 返回 True print(result)
運行該程序時,輸出為:
True False True
可以在Python中將元組做為指定值傳遞給endswith()方法。
如果字符串以元組的任何項目結(jié)尾,則endswith()返回True。如果不是,則返回False
text = "programming is easy" result = text.endswith(('programming', 'python')) # 輸出 False print(result) result = text.endswith(('python', 'easy', 'java')) #輸出 True print(result) # 帶 start 和 end 參數(shù) # 'programming is' 字符串被檢查 result = text.endswith(('is', 'an'), 0, 14) # 輸出 True print(result)
運行該程序時,輸出為:
False True True
如果需要檢查字符串是否以指定的前綴開頭,則可以在Python中使用startswith()方法。