Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Correct Sentence by Rudeboyz_Squad
def correct_sentence(text: str) -> str:
a = text[0].upper() + text[1::]
return a + '.' if text[-1] != '.' else a
March 18, 2019
Comments: