Python 字符串 isprintable() 方法
Python基础 2022-06-06 15:21:18小码哥的IT人生shichen
Python 字符串 isprintable() 方法
实例
检查文本中的所有字符是否可打印:
txt = "Hello! Are you #1?"
x = txt.isprintable()
print(x)
完整实例:
txt = "Hello! Are you #1?"
x = txt.isprintable()
print(x)
定义和用法
如果所有字符都是可打印的,则 isprintable() 方法返回 True,否则返回 False。
不可打印的字符可以是回车和换行符。
语法
string.isprintable()
参数值
无参数.
更多实例
示例代码:
检查文本中的所有字符是否可打印:
txt = "Hello!\nAre you #1?"
x = txt.isprintable()
print(x)
完整实例:
txt = "Hello!\nAre you #1?"
x = txt.isprintable()
print(x)