题目:将一个字符串首字母改为大写,若末尾不是.加上. 注意 如果末尾是.则不能再加
答案:
def correct_sentence(text: str) -> str:
return text[0].upper() + text[1:] + ("." if text[-1] != "." else "")
题目:将一个字符串首字母改为大写,若末尾不是.加上. 注意 如果末尾是.则不能再加
答案:
def correct_sentence(text: str) -> str:
return text[0].upper() + text[1:] + ("." if text[-1] != "." else "")