python小写字母变成大写
时间: 2023-10-14 18:16:16 浏览: 89
可以使用字符串的 `upper()` 方法将小写字母转换为大写字母。比如:
```python
s = "hello world"
s = s.upper()
print(s) # 输出 "HELLO WORLD"
```
另外,还可以使用 `str.capitalize()` 方法将字符串的首字母大写,其余字母小写。比如:
```python
s = "hello world"
s = s.capitalize()
print(s) # 输出 "Hello world"
```
相关问题
python小写字母转大写字母
可以使用字符串的 upper() 方法将小写字母转换为大写字母,例如:
```python
s = "hello world"
s_upper = s.upper()
print(s_upper) # 输出 "HELLO WORLD"
```
python小写字母转大写
在 Python 中,可以使用字符串的 `upper()` 方法将小写字母转换为大写字母。例如:
```
string = "hello world"
string_upper = string.upper()
print(string_upper)
```
输出结果为:
```
HELLO WORLD
```
阅读全文