您的位置:首页技术文章
文章详情页

Python字符串转大小写问题

【字号: 日期:2022-06-27 16:02:46浏览:47作者:猪猪

问题描述

str.lower() 字符串全小写。str.upper() 字符串全大写。

>>> str = ’my world, MY PYTHON’>>> str.lower()’my world, my python’>>> str.upper()’MY WORLD, MY PYTHON’

如何才能使字符串每个单词首字母都大写? 使 str = ’My World, My Python’

问题解答

回答1:

参考文章:Python字符串操作相关问题

字符串大小写转换

str.lower() 字符串全小写。str.upper() 字符串全大写。str.capitalize() 字符串首字母大写。str.title() 字符串每个单词首字母都大写。

>>> str = ’my world, MY PYTHON’>>> str.lower()’my world, my python’>>> str.upper()’MY WORLD, MY PYTHON’>>> str.capitalize()’My world, my python’>>> str.title()’My World, My Python’回答2:

str.title()

标签: Python 编程
相关文章: