python大小写字母转换
时间: 2023-05-13 17:06:18 浏览: 299
python字符串字母大小写交换
你可以使用Python内置的函数来实现大小写字母转换,例如使用upper()函数将小写字母转换为大写字母,或者使用lower()函数将大写字母转换为小写字母。以下是一个示例代码:
```
string = "Hello World"
print(string.upper()) # 输出 "HELLO WORLD"
print(string.lower()) # 输出 "hello world"
```
希望这可以帮助你!
阅读全文