python字符串转大写
时间: 2024-03-07 16:45:33 浏览: 59
在Python中,可以使用字符串的`upper()`方法将字符串转换为大写。`upper()`方法返回一个新的字符串,其中所有的字母都被转换为大写形式。
以下是一个示例代码:
```python
string = "hello world"
uppercase_string = string.upper()
print(uppercase_string)
```
输出结果为:
```
HELLO WORLD
```
相关问题
python 字符串大写转小写
在Python中,可以使用`lower()`方法将字符串中的大写字母转换为小写字母。以下是一个示例:
```python
string = "HELLO WORLD"
lowercase_string = string.lower()
print(lowercase_string)
```
输出结果为:
```
hello world
```
将Python字符串中大写转换小写小写转换大写
在Python中,将字符串的大写字母转换为小写字母可以使用`lower()`方法,而将小写字母转换为大写字母则可以使用`upper()`方法。以下是这两个操作的简单示例:
```python
# 转换为小写
string_lower = "HELLO WORLD".lower()
print(string_lower) # 输出: hello world
# 转换为大写
string_upper = "hello world".upper()
print(string_upper) # 输出: HELLO WORLD
```
如果你想在原始字符串上就地修改而不创建新字符串,可以这样做:
```python
# 就地修改为小写
string_in_place = "HELLO WORLD"
string_in_place = string_in_place.lower()
print(string_in_place) # 输出: hello world
# 就地修改为大写
string_in_place = "hello world"
string_in_place = string_in_place.upper()
print(string_in_place) # 输出: HELLO WORLD
```
阅读全文