python:实现切分字符串 源代码
时间: 2023-12-28 18:04:02 浏览: 102
好的,以下是Python实现切分字符串的源代码示例:
```python
string = "Hello, world!"
delimiter = ", "
result = string.split(delimiter)
print(result)
```
以上代码将把字符串"Hello, world!"以", "作为分隔符进行切分,得到列表["Hello", "world!"]。
请问还有其他需要回答的问题吗?
相关问题
python:实现切分字符串 源代码
当然可以,Python的字符串类型有split()方法可以用来切分字符串,示例代码如下:
```
# 定义一个字符串
string = "hello world, i'm python!"
# 使用split()方法进行切分
result = string.split(' ')
# 输出结果
print(result)
```
执行结果为:['hello', 'world,', "i'm", 'python!']
阅读全文