字符串大小转换python
时间: 2024-01-23 08:39:55 浏览: 68
Python 专题三 字符串的基础知识
可以使用 upper() 和 lower() 方法将字符串大小写互相转换。
例如:
```python
string = "Hello World!"
new_string = string.upper() # 将字符串转换为大写
print(new_string) # 输出: HELLO WORLD!
another_string = "NICE TO MEET YOU!"
new_another_string = another_string.lower() # 将字符串转换为小写
print(new_another_string) # 输出: nice to meet you!
```
还可以使用 title() 和 capitalize() 方法将字符串的首字母变为大写。
例如:
```python
string = "hello world!"
new_string = string.title() # 将字符串的首字母变为大写
print(new_string) # 输出: Hello World!
another_string = "nice to meet you!"
new_another_string = another_string.capitalize() # 将第一个词的首字母变为大写
print(new_another_string) # 输出: Nice to meet you!
```
阅读全文