python大小写转换
时间: 2024-05-16 11:10:47 浏览: 120
Python中有三种大小写转换的方法:
1. upper()方法:将字符串中的所有字符转换为大写字母。
例如:
```
s = "hello world"
print(s.upper()) # 输出:HELLO WORLD
```
2. lower()方法:将字符串中的所有字符转换为小写字母。
例如:
```
s = "HELLO WORLD"
print(s.lower()) # 输出:hello world
```
3. swapcase()方法:将字符串中的所有小写字母转换为大写字母,将所有大写字母转换为小写字母。
例如:
```
s = "HeLlO WoRlD"
print(s.swapcase()) # 输出:hElLo wOrLd
```
阅读全文