python小写字母转大写字母
时间: 2023-05-11 12:06:10 浏览: 111
Small-letters-turn-capital.zip_capital
可以使用字符串的 upper() 方法将小写字母转换为大写字母,例如:
```python
s = "hello world"
s_upper = s.upper()
print(s_upper) # 输出 "HELLO WORLD"
```
阅读全文
Small-letters-turn-capital.zip_capital