gpt4 book ai didi

python - 如何将字符串识别为字节文字?

转载 作者:太空狗 更新时间:2023-10-29 21:18:11 25 4
gpt4 key购买 nike

在 Python 3 中,如果我有这样一个字符串:

print(some_str)

产生这样的东西:

b'This is the content of my string.\r\n'

我知道这是一个字节字面量。

是否有一个函数可用于确定该字符串是否为字节文字格式(相对于具有 Unicode 'u' 前缀)而无需先进行解释?还是有另一种最佳实践来处理这个问题?我有一种情况,其中获取字节文字字符串的处理方式与在 Unicode 中的处理方式不同。理论上,是这样的:

if is_byte_literal(some_str):
// handle byte literal case
else:
// handle unicode case

最佳答案

做到这一点的最简单且可以说是最好的方法是利用内置的 isinstance使用 bytes 类型:

some_str = b'hello world'
if isinstance(some_str, bytes):
print('bytes')
elif isinstance(some_str, str):
print('str')
else:
# handle

因为字节字面值总是bytes的实例,isinstance(some_str, bytes)当然会计算为正确

关于python - 如何将字符串识别为字节文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39778978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com