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


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


如果字符串是标题字符串,则 Python istitle() 方法返回 True。否则返回 False。

签名

istitle()

参数

不需要参数。

返回

它返回True或False。

让我们看一些 istitle() 方法的例子来理解它的函数。

Python 字符串 istitle() 方法示例 1

这是一个简单的例子来理解

# Python istitle() method example
# Variable declaration
str = "Welcome To Javatpoint"
# Calling function
str2 = str.istitle()
# Displaying result
print(str2)

Python 字符串 istitle() 方法示例 2

# Python istitle() method example
# Variable declaration
str = "Welcome To Javatpoint" # True
# Calling function
str2 = str.istitle()
# Displaying result
print(str2)
str = "hello javatpoint"    # False
str2 = str.istitle()
print(str2)

输出:

True
False

Python 字符串 istitle() 方法示例 3

# Python istitle() method example
# Variable declaration
str = "ab cd ef"
if str.istitle() == True:
    print("In title case")
else:
    print("Not in tit0le case")
str = "Ab Cd Ef"
if str.istitle() == True:
    print("In title case")
else:
    print("Not in title case")
str = "1b 2d 3f"
if str.istitle() == True:
    print("In title case")
else:
    print("Not in title case")

输出:

Not in title case
In title case
Not in title case






相关用法


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