如何在python中更改字符串中最后一个字母的大小写?

时间:2013-09-05 08:04:04

标签: python string lowercase

所以我想将字符串中的最后一个字符更改为小写。下面的代码是我用来向后打印字符串的方法,但是list将最后一个字符留作首都,我无法弄清楚如何解决这个问题!

        if s[-1] == "x":
            new = ""
            last_index = len(s)-1
            for i in range(last_index, -1, -1):
                new += s[i]
            s = new
            s = "".join(word[0].upper() + word[1:] for word in s.split())
        print (s)

e.g: 输入是:

Inbox

并输出:

XobnI

但我希望它输出:

Xobni

提前致谢!

1 个答案:

答案 0 :(得分:7)

使用str.title

>>> "Inbox"[::-1].title()
'Xobni'