python字符串转换为大写
时间: 2024-05-09 10:21:14 浏览: 69
Python 专题三 字符串的基础知识
可以使用字符串的 `upper()` 方法将 Python 字符串转换为大写。
示例代码:
```
string = "Hello, world!"
uppercase_string = string.upper()
print(uppercase_string)
```
输出结果:
```
HELLO, WORLD!
```
阅读全文
Python 专题三 字符串的基础知识