Python 大写字母转小写字母
时间: 2023-11-05 20:02:29 浏览: 101
可以使用 Python 内置函数 `lower()` 将大写字母转换为小写字母。例如:
```python
s = 'HELLO WORLD'
print(s.lower()) # 输出 'hello world'
```
在上面的例子中,我们将字符串 `s` 中的所有大写字母转换为小写字母,并将结果打印出来。
相关问题
python小写字母转大写字母
可以使用字符串的 upper() 方法将小写字母转换为大写字母,例如:
```python
s = "hello world"
s_upper = s.upper()
print(s_upper) # 输出 "HELLO WORLD"
```
python将大写字母转换为小写字母。
好的,可以用Python内置的lower()函数将大写字母转换为小写字母。示例代码如下:
```
text = "HELLO WORLD"
text_lower = text.lower()
print(text_lower)
```
输出结果为:
```
hello world
```
阅读全文