lower() 功能: 转换字符串中所有大写字符为小写。 语法: str = str.lower() 示例: str = ".JPG" str = str.lower() print(str) # .jpg