python字符串怎么定义
时间: 2024-04-24 14:23:32 浏览: 75
python 字符串定义
可以定义一个函数,接收两个字符串作为参数,然后将第二个字符串中的字符从第一个字符串中删除,最后返回结果字符串。
具体实现可以使用 Python 内置的字符串方法 `replace()`,如下所示:
```python
def subtract_strings(str1, str2):
for char in str2:
str1 = str1.replace(char, '')
return str1
```
这个函数会遍历第二个字符串中的每个字符,然后使用 `replace()` 方法将其从第一个字符串中删除。最后返回结果字符串。
例如,如果调用 `subtract_strings('hello', 'l')`,函数会返回 `'heo'`。如果调用 `subtract_strings('hello', 'lo')`,函数会返回 `'he'`。
阅读全文