lower函数用于将字符串中的大写字毧转换为小写。在Python中,可以通过以下方式使用lower函数:
```python
# 定义一个字符串
string = "Hello, World!"
# 使用lower函数将字符串中的大写字毧转换为小写
lower_string = string.lower()
# 打印转换后的字符串
print(lower_string)
```
运行以上代码,输出结果为:
hello, world!