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