Python, LintCode, 145. 大小写转换

class Solution:
    """
    @param character: a character
    @return: a character
    """
    def lowercaseToUppercase(self, character):
        # write your code here
        return character.upper()

猜你喜欢

转载自blog.csdn.net/u010342040/article/details/80067952