python将大写转小写,小写转大写
时间: 2023-06-08 13:07:50 浏览: 133
python人民币小写转大写辅助工具
5星 · 资源好评率100%
您可以使用python里面的upper()函数将小写字母转成大写字母,也可以使用lower()函数将大写字母转成小写字母。下面是示例代码:
```python
str = "Hello, World!"
print(str.upper()) # 输出: "HELLO, WORLD!"
print(str.lower()) # 输出: "hello, world!"
```
注意,上面的代码中,str是一个字符串变量。要执行这个代码,您需要在Python解释器里面输入以上三行代码,并且去掉注释符号"#"。
阅读全文