python字符大小写转换
时间: 2023-10-16 12:11:21 浏览: 88
可以使用Python内置函数来实现字符大小写转换。具体来说,使用upper()函数将字符串转换为全大写字母,使用lower()函数将字符串转换为全小写字母,使用capitalize()函数将字符串的首字母大写,其余字母小写。例如:
```
s = "hello, world"
print(s.upper()) # 输出 "HELLO, WORLD"
print(s.lower()) # 输出 "hello, world"
print(s.capitalize()) # 输出 "Hello, world"
```
相关问题
python字符串大小写转换
在 Python 中,可以使用 `upper()` 方法将字符串转换为大写,使用 `lower()` 方法将字符串转换为小写,使用 `capitalize()` 方法将字符串的首字母转换为大写。
以下是示例代码:
```python
s = "Hello, World!"
# 将字符串转换为大写
print(s.upper()) # 输出: HELLO, WORLD!
# 将字符串转换为小写
print(s.lower()) # 输出: hello, world!
# 将字符串的首字母转换为大写
print(s.capitalize()) # 输出: Hello, world!
```
还可以使用 `title()` 方法将每个单词的首字母转换为大写,例如:
```python
s = "hello, world! how are you?"
# 将每个单词的首字母转换为大写
print(s.title()) # 输出: Hello, World! How Are You?
```
python字符输入大小写转换
可以使用字符串对象的 lower() 或者 upper() 方法实现。示例代码如下:
```
str_input = input('请输入字符串:')
str_output = str_input.lower() # 转换为小写
print(str_output)
```
或者:
```
str_input = input('请输入字符串:')
str_output = str_input.upper() # 转换为大写
print(str_output)
```
以上代码中,我们首先使用 input() 函数获取用户输入的字符串,然后使用字符串对象的 lower() 或者 upper() 方法将字符串转换为小写或大写形式,最后使用 print() 函数输出转换后的字符串。
阅读全文