用python写一段spilt函数的语句
时间: 2024-02-17 13:34:12 浏览: 114
f_spilt函数.txt
以下是一个简单的Python split函数的示例:
```python
def my_split(string, delimiter):
result = []
current_word = ""
for char in string:
if char == delimiter:
result.append(current_word)
current_word = ""
else:
current_word += char
result.append(current_word)
return result
# 示例用法
string = "Hello,world,how,are,you"
delimiter = ","
result = my_split(string, delimiter)
print(result)
```
该函数将字符串按指定的分隔符分成多个子字符串,并返回一个包含这些子字符串的列表。在上面的示例中,我们使用逗号作为分隔符,并将字符串“Hello,world,how,are,you”分成了5个子字符串。
阅读全文