用法:
bytes.isalnum()
bytearray.isalnum()
如果序列中的所有字节都是字母 ASCII 字符或 ASCII 十进制数字并且序列不为空,则返回
True
,否则返回False
。字母 ASCII 字符是序列b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
中的那些字节值。 ASCII 十进制数字是序列b'0123456789'
中的那些字节值。例如:
>>> b'ABCabc1'.isalnum() True >>> b'ABC abc1'.isalnum() False
相关用法
- Python bytes.isalpha用法及代码示例
- Python bytes.isupper用法及代码示例
- Python bytes.isdigit用法及代码示例
- Python bytes.istitle用法及代码示例
- Python bytes.islower用法及代码示例
- Python bytes.zfill用法及代码示例
- Python bytes.hex用法及代码示例
- Python bytes.title用法及代码示例
- Python bytes.removesuffix用法及代码示例
- Python bytes.split用法及代码示例
- Python bytes.lstrip用法及代码示例
- Python bytes.expandtabs用法及代码示例
- Python bytes.splitlines用法及代码示例
- Python bytes.rstrip用法及代码示例
- Python bytes.removeprefix用法及代码示例
- Python bytes.strip用法及代码示例
- Python bytes()用法及代码示例
- Python bytearray()用法及代码示例
- Python binascii.crc32用法及代码示例
- Python base64.b64decode()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 bytes.isalnum。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。