Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
String Methods solution in Clear category for Correct Capital by adamspj
def correct_capital(line: str) -> bool:
return line.isupper() or line.islower() or line.istitle()
Aug. 24, 2024