当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String istitle()用法及代码示例


如果字符串是标题字符串,istitle() 返回 True。如果不是,则返回 False。

用法:

string.istitle()

参数:

istitle() 方法不接受任何参数。

返回:

istitle() 方法返回:

  • True 如果字符串是标题字符串
  • False 如果字符串不是标题字符串或空字符串

示例 1: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())

输出

True
False
True
True
False

示例 2:如何使用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')

输出

Titlecased String
Not a Titlecased String

相关用法


注:本文由纯净天空筛选整理自 Python String istitle()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。