python 中字符串处理 大小写转换
时间: 2024-11-29 20:39:15 浏览: 1
Python小写换大写
在Python中,字符串处理中的大小写转换非常直观。主要有以下几个内置函数:
1. **lower()**:将字符串中的所有字符转换为小写。例如:
```python
string = "Hello World"
lower_string = string.lower()
print(lower_string) # 输出: hello world
```
2. **upper()**:将字符串中的所有字符转换为大写。示例:
```python
string = "Hello World"
upper_string = string.upper()
print(upper_string) # 输出: HELLO WORLD
```
3. **title()**:将每个单词的首字母转为大写。适用于句子格式的字符串。例如:
```python
sentence = "hello world"
title_sentence = sentence.title()
print(title_sentence) # 输出: Hello World
```
4. **capitalize()**:将字符串的第一个字符转为大写,其他字符转为小写。如果字符串为空,它会保持不变。如:
```python
string = "hello"
capitalized_string = string.capitalize()
print(capitalized_string) # 输出: Hello
```
5. **swapcase()**:交换字符串中大写字母和小写字母的位置。例如:
```python
string = "Python is FUN!"
swapped_string = string.swapcase()
print(swapped_string) # 输出: PYTHON IS fun!
```
阅读全文