【说站】python中isprintable判断字符的使用
2025-01-05
14
python中isprintable判断字符的使用
说明
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电脑。
更新于:1天前赞一波!
相关文章
- 【说站】python中lstrip()截掉字符
- 【说站】python partition如何分割字符串
- 【说站】python中popitem如何使用
- 【说站】python中有哪些大小写转换方法
- 【说站】python copy()和直接赋值的区别
- 【说站】splitlines在python中返回列表
- 【说站】python in操作符是什么
- 【说站】python get获取指定键值
- 【说站】python中capitalize的三种转换操作
- 【说站】python isidentifier()方法是什么
- 【说站】判断水仙花数python代码
- 【说站】python中isnumeric如何使用
- 【说站】python最短路径有哪些算法
- 【说站】python casefold()方法如何使用
- 【说站】凯撒密码python编程简单
- 【说站】python center()如何填充字符串
- 【说站】python isdigit如何判断字符串
- 【说站】python美元转换成人民币转换代码
- 【说站】python输入身高体重算BMI
- 【说站】python命名关键字参数的使用注意
文章评论
评论问答