Python字符串替换大小写
时间: 2024-04-24 21:19:49 浏览: 202
python字符串替换re.sub()实例解析
在Python中,可以使用字符串的内置方法来替换大小写。下面是一种常见的方法:
1. 使用`str.lower()`方法将字符串转换为小写。
2. 使用`str.upper()`方法将字符串转换为大写。
3. 使用`str.capitalize()`方法将字符串的首字母大写,其他字母小写。
4. 使用`str.title()`方法将字符串中每个单词的首字母大写,其他字母小写。
下面是一个示例代码:
```python
string = "Hello, World!"
# 将字符串转换为小写
lowercase = string.lower()
print(lowercase) # 输出: hello, world!
# 将字符串转换为大写
uppercase = string.upper()
print(uppercase) # 输出: HELLO, WORLD!
# 将字符串的首字母大写,其他字母小写
capitalized = string.capitalize()
print(capitalized) # 输出: Hello, world!
# 将字符串中每个单词的首字母大写,其他字母小写
titlecased = string.title()
print(titlecased) # 输出: Hello, World!
```
阅读全文