python 字符串分割substr
时间: 2024-01-23 09:16:00 浏览: 133
以下是Python字符串分割的例子:
1. 使用默认分隔符进行分割:
```python
str = "w w w.baidu.com"
list1 = str.split()
print(list1) # 输出:['w', 'w', 'w.baidu.com']
```
2. 使用"."进行分割:
```python
str = "w w w.baidu.com"
list2 = str.split('.')
print(list2) # 输出:['w w w', 'baidu', 'com']
```
3. 使用空格进行分割:
```python
str = "w w w.baidu.com"
list3 = str.split(' ')
print(list3) # 输出:['w', 'w', 'w.baidu.com']
```
4. 使用空格进行分割,且只分割前3个字符:
```python
str = "w w w.baidu.com"
list4 = str.split(' ', 3)
print(list4) # 输出:['w', 'w', 'w.baidu.com']
```
阅读全文