python小写字母如何转化为大写字母
时间: 2023-10-10 10:15:44 浏览: 69
Small-letters-turn-capital.zip_capital
在Python中,可以使用字符串对象的`upper()`方法将小写字母转换为大写字母。例如,以下代码将字符串变量`my_string`中的所有小写字母转换为大写字母:
```
my_string = "hello world"
my_string_upper = my_string.upper()
print(my_string_upper)
```
输出结果为:
```
HELLO WORLD
```
阅读全文