Python转换小写字母
时间: 2023-11-05 10:03:02 浏览: 86
将字符串中的所有大写字母转换为小写字母可以使用字符串的 `lower()` 方法,如下所示:
```python
s = "Hello World"
s_lower = s.lower()
print(s_lower) # 输出 "hello world"
```
该方法会返回一个新的字符串,原字符串不会被修改。如果要将原字符串直接修改为小写字母形式,可以使用赋值操作:
```python
s = "Hello World"
s = s.lower()
print(s) # 输出 "hello world"
```
注意,字符串的 `lower()` 方法只会将大写字母转换为小写字母,其他字符不会受到影响。
相关问题
python中将小写字母转换成大写字母的函数
在Python中,可以使用字符串对象的`upper()`方法将小写字母转换为大写字母。例如:
```
string = "hello world"
upper_string = string.upper()
print(upper_string)
```
输出结果为:
```
HELLO WORLD
```
另外,还可以使用内置函数`str.upper()`将字符转换成大写字母,例如:
```
char = 'a'
upper_char = str.upper(char)
print(upper_char)
```
输出结果为:
```
A
```
python中将小写字母转换成大写
在 Python 中,可以使用 `upper()` 方法将小写字母转换成大写字母。例如:
```python
s = "hello world"
s_upper = s.upper()
print(s_upper)
```
输出结果为:
```
HELLO WORLD
```
`upper()` 方法会返回一个新的字符串,原字符串本身不会被修改。
阅读全文