• 技术文章 >Python技术 >Python基础教程

    python中isprintable判断字符的使用

    小妮浅浅小妮浅浅2021-08-24 09:23:37原创3829

    说明

    1、判断字符是否为可打印字符。isprintable()用于判断字符串中的所有字符是否为空。

    Unicode字符集中在Other和Separator类别中的字符是不可打印的字符(但不包括ASCII码中的空格(0x20)。

    2、isprintable()可以用来判断转义字符。

    实例

    str1 = '\n\t'
    print(str1.isprintable())  # False
    str1 = 'mr_soft'
    print(str1.isprintable())  # True
    str1 = '12345'
    print(str1.isprintable())  # True
    str1 = '蜘蛛侠'
    print(str1.isprintable())  # True

    以上就是python中isprintable判断字符的使用,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python isprintable
    上一篇:python中isnumeric如何使用 下一篇:python中有哪些大小写转换方法

    相关文章推荐

    • 什么是网络协议• python中的去除重复项的操作• python中少见的函数map()和partial()• python的sort()排序方法• Python中的文件读写-理论知识

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网