如果字符串中的所有字符都可打印或字符串为空,则 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 isnumeric()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String join()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String upper()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String translate()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
注:本文由纯净天空筛选整理自 Python String isprintable() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。