python字符串中特定大小写转换
时间: 2024-09-12 11:12:29 浏览: 45
在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. `capitalize()`:将字符串首字母转为大写,其他字符转为小写。
```python
string = "hello world"
capitalized_string = string.capitalize()
print(capitalized_string) # 输出: Hello world
```
4. `title()`:将每个单词的首字母转为大写,其余字母转为小写。
```python
string = "hello world"
title_string = string.title()
print(title_string) # 输出: Hello World
```
5. `swapcase()`:交换字符串中所有字母的大小写。
```python
string = "Hello World"
swapped_string = string.swapcase()
print(swapped_string) # 输出: hELLO wORLD
```
阅读全文