字符串大小写转换
时间: 2023-07-25 21:04:56 浏览: 92
字符串大小写转换.rar
要将字符串从大写转换为小写,可以使用 Python 的 `lower()` 方法。例如:
```python
string = "HELLO WORLD"
lowercase_string = string.lower()
print(lowercase_string)
```
输出结果为:`hello world`
要将字符串从小写转换为大写,可以使用 Python 的 `upper()` 方法。例如:
```python
string = "hello world"
uppercase_string = string.upper()
print(uppercase_string)
```
输出结果为:`HELLO WORLD`
阅读全文