python字符串大写
时间: 2023-07-24 21:54:57 浏览: 65
Python字符串学习
要将一个字符串转换为大写,可以使用字符串的 `upper()` 方法。例如,将字符串 `s` 转换为大写的代码如下:
```
s = "Hello, World!"
s_upper = s.upper()
print(s_upper) # 输出 "HELLO, WORLD!"
```
这里的 `upper()` 方法会返回一个新的字符串,其中所有字母都被转换为大写。原始字符串 `s` 不会被修改。
阅读全文