python 大小写函数
时间: 2023-11-15 10:56:04 浏览: 78
实现一个函数,把一个字符串中的字符从小写转为大写。
3星 · 编辑精心推荐
Python中大小写转换函数有两个,分别是`upper()`和`lower()`。其中`upper()`函数将字符串中的所有字母转换为大写字母,而`lower()`函数则将字符串中的所有字母转换为小写字母。
示例代码如下:
```python
s = "Hello, World!"
print(s.upper()) # 输出 "HELLO, WORLD!"
print(s.lower()) # 输出 "hello, world!"
```
阅读全文