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


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


如果字符串中的所有字符都可打印或字符串為空,則 Python isprintable() 方法返回 True。如果字符串中的任何字符是不可打印的,則返回 False。

簽名

isprintable()

參數

不需要參數。

返回

它返回True或False。

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

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

如果字符串是可打印的,這是一個打印 True 的簡單示例。請參閱下麵的示例。

# Python isprintable() method example
# Variable declaration
str = "Hello, Javatpoint"
# Calling function
str2 = str.isprintable()
# Displaying result
print(str2)

輸出:

True

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

在這裏,我們在字符串中使用了一些其他字符,如換行符和製表符。查看示例的結果。

# Python isprintable() method example
# Variable declaration
str = "Hello, Javatpoint"
str2 = "Learn Java here\n"
str3 = "\t Python is a programming language"
# Calling function
str4 = str.isprintable()
str5 = str2.isprintable()
str6 = str3.isprintable()
# Displaying result
print(str4)
print(str5)
print(str6)

輸出:

True
False
False

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

測試也包含特殊字符的 different-different 字符串值。在特殊字符的情況下,方法返回 False。

# Python isprintable() method example
# Variable declaration
str = "Hello, Javatpoint"
if str.isprintable() == True:
    print("It is printable")
else:
    print("Not printable")
str = "$Hello@Javatpoint#"    # Special Chars
if str.isprintable() == True:
    print("It is printable")
else:
    print("Not printable")
str = "Hello\nJavatpoint"
if str.isprintable() == True:
    print("It is printable")
else:
    print("Not printable")

輸出:

It is printable
It is printable
Not printable






相關用法


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