python字符串字母大小写转换
时间: 2023-07-24 13:15:24 浏览: 156
python字符串字母大小写交换
可以使用Python中的字符串方法来实现大小写转换,具体方法如下:
1. 将字符串转换为大写字母:
```python
string.upper()
```
2. 将字符串转换为小写字母:
```python
string.lower()
```
3. 将字符串的首字母转换为大写字母:
```python
string.capitalize()
```
4. 将字符串中每个单词的首字母转换为大写字母:
```python
string.title()
```
其中,string 为需要转换的字符串。例如:
```python
string = "Hello, World!"
print(string.upper()) # 输出 "HELLO, WORLD!"
print(string.lower()) # 输出 "hello, world!"
print(string.capitalize()) # 输出 "Hello, world!"
print(string.title()) # 输出 "Hello, World!"
```
注意,以上方法都是返回转换后的新字符串,原字符串并没有改变。如果需要改变原字符串,可以使用赋值运算符,例如:
```python
string = "Hello, World!"
string = string.upper()
print(string) # 输出 "HELLO, WORLD!"
```
阅读全文