将字符串小写字母转换为大写字母
时间: 2023-08-29 08:13:32 浏览: 80
将一字符串中的小写英文字母改成大写。-c语言习题
可以使用Python中的upper()方法将字符串小写字母转换为大写字母。例如:
```python
string = "hello world"
string_upper = string.upper()
print(string_upper)
```
输出结果为:
```
HELLO WORLD
```
阅读全文
将一字符串中的小写英文字母改成大写。-c语言习题