endswith Python · 字符串方法
检查字符串是否以指定子串结尾。
怎么用
字符串.endswith(子串)
小例子
print('hello'.endswith('lo'))
运行结果
True
官方文档:https://docs.python.org/zh-cn/3/library/stdtypes.html#string-methods
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条endswith Python · 字符串方法检查字符串是否以指定子串结尾。
字符串.endswith(子串)
print('hello'.endswith('lo'))
True
官方文档:https://docs.python.org/zh-cn/3/library/stdtypes.html#string-methods
在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条