Python String istitle()

The syntax of istitle() method is:

string.istitle()

istitle() Parameters

The istitle() method doesn't take any parameters.


Return Value from istitle()

The istitle() method returns:

  • True if the string is a titlecased string
  • False if the string is not a titlecased string or an empty string

Example 1: Working of istitle()

s = 'Python Is Good.'
print(s.istitle())

s = 'Python is good'
print(s.istitle())

s = 'This Is @ Symbol.'
print(s.istitle())

s = '99 Is A Number'
print(s.istitle())

s = 'PYTHON'
print(s.istitle())

Output

True
False
True
True
False

Example 2: How to use istitle()?

s = 'I Love Python.'
if s.istitle() == True:
  print('Titlecased String')
else:
  print('Not a Titlecased String')
  
s = 'PYthon'
if s.istitle() == True:
  print('Titlecased String')
else:
  print('Not a Titlecased String')

Output

Titlecased String
Not a Titlecased String

Also Read:

Did you find this article helpful?

Your builder path starts here. Builders don't just know how to code, they create solutions that matter.

Escape tutorial hell and ship real projects.

Try Programiz PRO
  • Real-World Projects
  • On-Demand Learning
  • AI Mentor
  • Builder Community