python 大小写字母函数
时间: 2023-08-19 09:08:55 浏览: 108
python 输出所有大小写字母的方法
你使用Python内置的字符串方法来实现大小写字母的转换。下面是几个常用的函数:
1. `upper()`:将字符串中的所有字母转换为大写。
```python
string = "hello, world!"
upper_string = string.upper()
print(upper_string) # 输出: HELLO, WORLD!
```
2. `lower()`:将字符串中的所有字母转换为小写。
```python
string = "Hello, World!"
lower_string = string.lower()
print(lower_string) # 输出: hello, world!
```
3. `capitalize()`:将字符串的首字母转换为大写,其他字母转换为小写。
```python
string = "hello, world!"
capitalized_string = string.capitalize()
print(capitalized_string) # 输出: Hello, world!
```
4. `swapcase()`:将字符串中的大写字母转换为小写,小写字母转换为大写。
```python
string = "Hello, World!"
swapped_string = string.swapcase()
print(swapped_string) # 输出: hELLO, wORLD!
```
希望对你有所帮助!如果有任何问题,请随时提问。
阅读全文