Python有一组可以用于字符串的内置方法。Python 字符串操作常用操作,如字符串的替换、删除、截取、赋值、连接、比较、查找、分割等。本文主要介绍Python 字符串 istitle() 方法

Python 字符串方法

例如:

判断每个单词是否以大写字母开头:

txt = "Hello, And Welcome To My World!"

x = txt.istitle()

print(x)

1、定义和用法

如果文本中所有单词都以大写字母开头,其余单词都是小写字母,则istitle()返回True,否则返回False。

符号和数字将被忽略。

2、调用语法

string.istitle()

3、参数说明

没有参数。

4、使用示例

例如:

判断每个单词是否以大写字母开头:

a = "HELLO, AND WELCOME TO MY WORLD"
b = "Hello"
c = "22 Names"
d = "This Is %'!?"

print(a.istitle())
print(b.istitle())
print(c.istitle())
print(d.istitle())

Python 字符串方法

推荐文档

相关文档

大家感兴趣的内容

随机列表