赞
赏
在开发过程中,有时候我们需要判断一个 字符串 是否是所有的单词都是首字母大写其他字符全是小写的,在 Python 中,判断字符串是否是所有单词都是首字母大写其他字符小写的函数为 istitle() 。
str.istitle() -> bool
参数 | 描述 |
---|---|
str | 表示原字符串。 |
如果字符串所有单词都是首字母大写其他字符是小写,那么返回 True,否则返回 False。
使用 istitle() 函数,判断首字母大写的字符串
print("嗨客网(www.haicoder.net)")
# 使用 istitle() 函数,判断首字母大写的字符串
strHaicoder = "Haicoder"
print("istitle =", strHaicoder.istitle())
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的 变量 strHaicoder,并且赋值为首字母大写其他字符小写的形式,接着我们使用字符串的 istitle() 函数判断变量 strHaicoder 是否是首字母大写其他字符小写,并使用 print() 函数打印最终结果。
使用 istitle() 函数,判断首字母大写其他字符也大写的字符串
print("嗨客网(www.haicoder.net)")
# 使用 istitle() 函数,判断首字母大写其他字符也大写的字符串
strHaicoder = "HaiCoder"
print("istitle =", strHaicoder.istitle())
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的变量 strHaicoder,并且赋值为首字母大写其也有字符大写的形式,接着我们使用字符串的 istitle() 函数判断变量 strHaicoder 是否是首字母大写其他字符小写,并使用 print() 函数打印最终结果。
使用 istitle() 函数,判断数字和首字母大写混合的字符串
print("嗨客网(www.haicoder.net)")
# 使用 istitle() 函数,判断数字和首字母大写混合的字符串
strHaicoder = "Haicoder1024"
print("istitle =", strHaicoder.istitle())
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的变量 strHaicoder,并且赋值为数字和首字母大写混合的形式,接着我们使用字符串的 istitle() 函数判断变量 strHaicoder 是否是首字母大写其他字符小写,并使用 print() 函数打印最终结果。
使用 istitle() 函数,判断中文和首字母大写混合的字符串
print("嗨客网(www.haicoder.net)")
# 使用 istitle() 函数,判断中文和首字母大写混合的字符串
strHaicoder = "嗨客网Haicoder"
print("istitle =", strHaicoder.istitle())
程序运行后,控制台输出如下:
首先,我们定义了一个字符串类型的变量 strHaicoder,并且赋值为中文和首字母大写混合的形式,接着我们使用字符串的 istitle() 函数判断变量 strHaicoder 是否只包含首字母大写,并使用 print() 函数打印最终结果。
在 Python 中,判断字符串是否是所有单词都是首字母大写其他字符小写的函数为 istitle() 。Python istitle() 函数语法:
str.istitle() -> bool
使用 istitle() 函数,判断只有首字母大写的字符串,返回 True。使用 istitle() 函数,判断首字母大写其他字符也大写的字符串,返回 Fasle。
使用 istitle() 函数,判断数字和首字母大写混合的字符串,返回 True。使用 istitle() 函数,判断中文和首字母大写混合的字符串,返回 True。