Discuss / Python / 打卡

打卡

Topic source
def normalize(name):
        s=name[0].upper()
        s +=name[1:].lower()
        return s

  • 1

Reply