python把小写字母转大写
时间: 2023-09-24 20:03:02 浏览: 135
Python小写换大写
你可以使用 `upper()` 方法将 Python 字符串中的小写字母转换为大写字母。下面是一个示例代码:
```python
s = "hello world"
s_upper = s.upper()
print(s_upper) # 输出 "HELLO WORLD"
```
在上述代码中,`upper()` 方法将 `s` 中的小写字母转换为大写字母,并将结果赋值给 `s_upper` 变量。最后,使用 `print()` 函数输出 `s_upper`。
阅读全文