python 大小写函数
时间: 2023-11-15 17:56:04 浏览: 75
python代码区分大小写吗
Python中大小写转换函数有两个,分别是`upper()`和`lower()`。其中`upper()`函数将字符串中的所有字母转换为大写字母,而`lower()`函数则将字符串中的所有字母转换为小写字母。
示例代码如下:
```python
s = "Hello, World!"
print(s.upper()) # 输出 "HELLO, WORLD!"
print(s.lower()) # 输出 "hello, world!"
```
阅读全文