208

我知道 .capitalize() 将字符串的第一个字母大写,但如果第一个字符是整数怎么办?

1bob
5sandy

对此

1Bob
5Sandy
4

10 回答 10

282

只是因为没有其他人提到它:

>>> 'bob'.title()
'Bob'
>>> 'sandy'.title()
'Sandy'
>>> '1bob'.title()
'1Bob'
>>> '1sandy'.title()
'1Sandy'

然而,这也会给

>>> '1bob sandy'.title()
'1Bob Sandy'
>>> '1JoeBob'.title()
'1Joebob'

即它不只是大写第一个字母字符。但是.capitalize()有同样的问题,至少在那个方面'joe Bob'.capitalize() == 'Joe bob',所以嗯。

于 2012-09-13T16:18:06.857 回答
254

如果第一个字符是整数,则不会将第一个字母大写。

>>> '2s'.capitalize()
'2s'

如果你想要这个功能,去掉数字,你可以'2'.isdigit()用来检查每个字符。

>>> s = '123sa'
>>> for i, c in enumerate(s):
...     if not c.isdigit():
...         break
... 
>>> s[:i] + s[i:].capitalize()
'123Sa'
于 2012-09-13T15:56:40.733 回答
40

这类似于@Anon 的答案,因为它保持字符串的其余部分保持不变,而不需要 re 模块。

def sliceindex(x):
    i = 0
    for c in x:
        if c.isalpha():
            i = i + 1
            return i
        i = i + 1

def upperfirst(x):
    i = sliceindex(x)
    return x[:i].upper() + x[i:]

x = '0thisIsCamelCase'

y = upperfirst(x)

print(y)
# 0ThisIsCamelCase

正如@Xan 指出的那样,该函数可以使用更多的错误检查(例如检查 x 是否是一个序列-但是我省略了边缘情况来说明该技术)

根据@normanius 评论更新(谢谢!)

感谢@GeoStoneMarten 指出我没有回答这个问题!-修复了

于 2015-08-26T17:15:07.950 回答
17

这是一个单行,它将大写第一个字母并保留所有后续字母的大小写:

import re

key = 'wordsWithOtherUppercaseLetters'
key = re.sub('([a-zA-Z])', lambda x: x.groups()[0].upper(), key, 1)
print key

这将导致WordsWithOtherUppercaseLetters

于 2014-07-22T21:26:39.627 回答
4

看到这里陈厚武回答,可以使用字符串包:

import string
string.capwords("they're bill's friends from the UK")
>>>"They're Bill's Friends From The Uk"
于 2017-04-11T13:01:36.640 回答
4

单线:' '.join(sub[:1].upper() + sub[1:] for sub in text.split(' '))

于 2018-02-25T10:23:38.640 回答
2
def solve(s):
    for i in s[:].split():
        s = s.replace(i, i.capitalize())
    return s

这是工作的实际代码。.title() 在 '12name' 的情况下不起作用

于 2020-10-09T17:36:58.850 回答
1

我想出了这个:

import re

regex = re.compile("[A-Za-z]") # find a alpha
str = "1st str"
s = regex.search(str).group() # find the first alpha
str = str.replace(s, s.upper(), 1) # replace only 1 instance
print str
于 2012-09-13T16:06:03.383 回答
1

您可以使用正则表达式替换preceded by a digit每个单词的第一个字母 ( ):

re.sub(r'(\d\w)', lambda w: w.group().upper(), '1bob 5sandy')

output:
 1Bob 5Sandy
于 2016-11-16T11:25:33.193 回答
0
def solve(s):

names = list(s.split(" "))
return " ".join([i.capitalize() for i in names])

接受像你的名字这样的输入:john doe

返回第一个大写的字母。(如果第一个字符是数字,则不发生大写)

适用于任何名称长度

于 2021-02-10T01:55:34.813 回答