python中大小写转换函数
时间: 2023-11-06 15:07:19 浏览: 86
Python大小写转换.py
在 Python 中,我们可以使用以下字符串函数来进行大小写转换:
1. `str.upper()`:将字符串中的所有字符转换为大写字母。
2. `str.lower()`:将字符串中的所有字符转换为小写字母。
3. `str.capitalize()`:将字符串的第一个字符转换为大写字母,其他字符转换为小写字母。
4. `str.title()`:将字符串中的每个单词的第一个字母转换为大写字母,其他字母转换为小写字母。
下面是一些示例代码:
```python
# 将字符串转换为大写字母
string = "Hello, World!"
print(string.upper())
# 将字符串转换为小写字母
string = "Hello, World!"
print(string.lower())
# 将字符串的第一个字符转换为大写字母,其他字符转换为小写字母
string = "hello, world!"
print(string.capitalize())
# 将字符串中的每个单词的第一个字母转换为大写字母,其他字母转换为小写字母
string = "hello, world!"
print(string.title())
```
阅读全文