ptaptthon字符串大小写转换
时间: 2024-09-30 11:04:20 浏览: 29
字符串大小写转换.exe
5星 · 资源好评率100%
Python 中有内置的方法可以方便地进行字符串的大小写转换。以下是几个常用的函数:
1. **lower()**:将字符串中的所有字符转换为小写。
```python
text = "Hello World"
lowercase_text = text.lower()
print(lowercase_text) # 输出: hello world
```
2. **upper()**:将字符串中的所有字符转换为大写。
```python
text = "Hello World"
uppercase_text = text.upper()
print(uppercase_text) # 输出: HELLO WORLD
```
3. **capitalize()**:将字符串的第一个字符转换为大写,其余字符转为小写(如果字符串是以字母开头的话)。
```python
text = "hello world"
capitalized_text = text.capitalize()
print(capitalized_text) # 输出: Hello world
```
4. **title()**:每个单词的首字母大写,其他字母小写。
```python
text = "hello world"
title_case_text = text.title()
print(title_case_text) # 输出: Hello World
```
5. **swapcase()**:交换字符串中大写字母和小写字母的位置。
```python
text = "Hello World"
swapped_case_text = text.swapcase()
print(swapped_case_text) # 输出: hELLO wORLD
```
阅读全文