當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。