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


Python String islower()用法及代碼示例


如果字符串中的所有字符都是小寫,則 Python 字符串 islower() 方法返回 True。如果不是小寫,則返回 False。

簽名

islower()

參數

不需要參數。

返回

它返回True或False。

讓我們看一些 islower() 方法的例子來理解它的函數。

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

一個簡單的例子來理解如何應用這個方法。它返回 true,請參見下麵的示例。

# Python islower() method example
# Variable declaration
str = "javatpoint"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)

輸出:

True

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

如果在小寫以外的其他情況下找到任何單個字符,則返回 False。請參閱下麵的示例。

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

輸出:

False

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

字符串也可以有數字,這種方法適用於字母大小寫並忽略數字。所以它返回 True,見下麵的例子。

# Python islower() method example
# Variable declaration
str = "hi, my contact is 9856******"
# Calling function
str2 = str.islower()
# Displaying result
print(str2)

輸出:

True






相關用法


注:本文由純淨天空篩選整理自 Python String islower() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。