gpt4 book ai didi

python - 转换一个字符串,使第一个字母大写,所有其他字母都小写

转载 作者:行者123 更新时间:2023-12-03 15:52:39 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




8年前关闭。




Possible Duplicate:
How to capitalize the first letter of each word in a string (Python)?



有没有一个选项可以转换一个字符串,这样第一个字母是大写的,所有的都是小写的......就像下面一样......我知道有大写和小写可以转换为大写和小写......

string.upper() //for uppercase 
string.lower() //for lowercase
string.lower() //for lowercase

INPUT:-italic,ITALIC

OUTPUT:-Italic


http://docs.python.org/2/library/stdtypes.html

最佳答案

只需使用 str.title() :

In [73]: a, b = "italic","ITALIC"

In [74]: a.title(), b.title()
Out[74]: ('Italic', 'Italic')

帮助()在 str.title() :
S.title() -> string

Return a titlecased version of S, i.e. words start with uppercase
characters, all remaining cased characters have lowercase.

关于python - 转换一个字符串,使第一个字母大写,所有其他字母都小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13635215/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com