Python Detect Capital problem with solution

Deepak rkm
1 min readAug 9, 2020

Given a word, you need to judge whether the usage of capitals in it is right or not.

We define the usage of capitals in a word to be right when one of the following cases holds:

  1. All letters in this word are capitals, like “USA”.
  2. All letters in this word are not capitals, like “leetcode”.
  3. Only the first letter in this word is capital, like “Google”.

Otherwise, we define that this word doesn’t use capitals in a right way.

Solution:

class Solution(object):
def detectCapitalUse(self, word):
if word.istitle() == True :
return True
elif all([True if i.islower() else False for i in word ])==True or all([True if i.isupper() else False for i in word ])==True :
return True
else:
return False

--

--

Deepak rkm

proud to be pythonist and aspiring to be sre with AI skills