编写一个指定字符串结尾的字符串函数
时间: 2024-02-05 18:12:23 浏览: 102
字符串函数实现
以下是一个示例函数,它接收两个参数:一个字符串和一个结束字符串。如果传入的字符串以指定的结束字符串结尾,则返回True,否则返回False。
```python
def ends_with(string, end):
if string.endswith(end):
return True
else:
return False
```
使用示例:
```python
print(ends_with("hello world", "world")) # True
print(ends_with("hello world", "foo")) # False
```
阅读全文