大小写转换的函数
时间: 2023-09-21 07:07:50 浏览: 88
在很多编程语言中,都提供了大小写转换的函数。以下是在 Python 语言中实现大小写转换的示例代码:
```python
# 将字符串全部转换为大写
string = "Hello, world!"
uppercase_string = string.upper()
print(uppercase_string)
# 将字符串全部转换为小写
string = "Hello, world!"
lowercase_string = string.lower()
print(lowercase_string)
# 将字符串中的首字母转换为大写
string = "hello, world!"
title_string = string.title()
print(title_string)
```
输出结果:
```
HELLO, WORLD!
hello, world!
Hello, World!
```
在上述代码中,`upper()` 函数将字符串全部转换为大写,`lower()` 函数将字符串全部转换为小写,`title()` 函数将字符串中的每个单词的首字母转换为大写。
阅读全文