Python 字符串 isprintable() 方法

实例

检查文本中的所有字符是否可打印:

  1. txt = "Hello! Are you #1?"
  2. x = txt.isprintable()
  3. print(x)

定义和用法

如果所有字符都是可打印的,则 isprintable() 方法返回 True,否则返回 False。

不可打印的字符可以是回车和换行符。


语法

  1. string.isprintable()
参数值

无参数.


更多实例

实例

检查文本中的所有字符是否可打印:

  1. txt = "Hello!\nAre you #1?"
  2. x = txt.isprintable()
  3. print(x)

分类导航