字符串的 方法用于连接多个字符串, 方法可以删除字符串两端的空白符, 方法用来以指定字符为分隔符把当前字符串分隔成多个字符串, 方法用来查找特定子串并替换为指定字符串, 方法用于指定新字符串的宽度并居中显示特定字符串。
时间: 2023-11-10 13:09:33 浏览: 73
字符串按指定的字符串进行分隔
5星 · 资源好评率100%
字符串的 `join()` 方法用于连接多个字符串,例如:
```
words = ['hello', 'world']
sentence = ' '.join(words)
print(sentence) # 输出:'hello world'
```
字符串的 `strip()` 方法可以删除字符串两端的空白符,例如:
```
text = ' abc '
cleaned_text = text.strip()
print(cleaned_text) # 输出:'abc'
```
字符串的 `split()` 方法用来以指定字符为分隔符把当前字符串分隔成多个字符串,例如:
```
text = 'hello,world'
words = text.split(',')
print(words) # 输出:['hello', 'world']
```
字符串的 `replace()` 方法用来查找特定子串并替换为指定字符串,例如:
```
text = 'hello,world'
new_text = text.replace(',', ' ')
print(new_text) # 输出:'hello world'
```
字符串的 `center()` 方法用于指定新字符串的宽度并居中显示特定字符串,例如:
```
text = 'hello'
new_text = text.center(10, '-')
print(new_text) # 输出:'--hello---'
```
阅读全文