the road of python - codewars

the road of python - codewars

7ku Thinking & Testing : Something capitalized
the road of python - codewars_第1张图片the road of python - codewars_第2张图片
一句话来解读题目要求:将给定列表中的字符串末尾字母进行大写输出

分析:test里只有一个字母, return s.upper() 报错:Failed when s = ‘xvpz sxqj gbwo mhie’: ‘XVPZ SXQJ GBWO MHIE’ should equal ‘xvpZ sxqJ gbwO mhiE’。原因是return s.upper()只适用于字符串为空或者单个字母的情况

俺的答案:

def testit(s):
    return (s[::-1].title())[::-1]

打基础:python字符串大小写

print(str.upper())          # 把所有字符中的小写字母转换成大写字母
print(str.lower())          # 把所有字符中的大写字母转换成小写字母
print(str.capitalize())     # 把第一个字母转化为大写字母,其余小写
print(str.title())          # 把每个单词的第一个字母转化为大写,其余小写 

你可能感兴趣的:(coderwars)