python 字符串函数 ID 函数名称 描述 1 capitalize() 把字符串的第一个字符改为大写>>> str1 = ‘abcd’>>> str1.capitalize()’Abcd’>>> 2 casefold() 把整个字符串的所有字符改为小写>>> str1 = ‘I like the writing style of Python’>>> str1.casefo --------2.5 Python 2023-09-02 57 点赞 0 评论 86 浏览