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

this

1bob
5sandy

这个

1Bob
5Sandy

当前回答

我想到了这个:

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

其他回答

一行代码:' '.join(sub[:1].upper() + sub[1:]用于文本中的sub。分割(' '))

def solve(s):
    for i in s[:].split():
        s = s.replace(i, i.capitalize())
    return s

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

def solve(s):

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

输入你的名字,无名氏

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

适用于任何名称长度

这与@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指出我没有回答这个问题!固定,

正如Chen Houwu回答的,可以使用字符串包:

import string
string.capwords("they're bill's friends from the UK")
>>>"They're Bill's Friends From The Uk"