Python String istitle() 方法

Python String istitle() 方法

istitle() 方法检测字符串中所有的单词拼写首字母是否为大写,且其他字母为小写。

Python String istitle() 语法

istitle()方法语法:

str.istitle()

Python String istitle() 参数

  • 无。

Python String istitle() 返回值

如果字符串中所有的单词拼写首字母是否为大写,且其他字母为小写则返回 True,否则返回 False.

Python String istitle() 示例1

以下实例展示了istitle()方法的实例:

#!/usr/bin/python3

s = 'Api Demos'
print(s.istitle())

# First character in first word is lowercase
s = 'api Demos'
print(s.istitle())

s = 'API DemoS'
print(s.istitle())

# Ignore the digit 5555, hence returns True
s = '5555 Is My Number'
print(s.istitle())

# word has uppercase characters at middle
s = 'APIDEMOS'
print(s.istitle())

输出:

Python String istitle() 方法

Python String istitle() 示例2

使用Python的String istitle()方法检查一个字符串是否是标题的大小写。

#!/usr/bin/python3

s = 'I Love API Demos'

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

s = 'I Love api demos'

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

输出:

Python String istitle() 方法

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程