pandas.Series.str.decode#
- Series.str.decode(encoding, errors='strict')[源代码]#
在 Series/Index 中使用指定的编码解码字符串。
等同于 python2 中的
str.decode()
和 python3 中的bytes.decode()
。- 参数:
- 编码str
指定要使用的编码。
- 错误str, 可选
指定错误处理方案。可能的值是那些由
bytes.decode()
支持的值。
- 返回:
- 系列或索引
一个包含解码字符串的序列或索引。
参见
Series.str.encode
将字符串编码为 Series/Index 中的字节。
例子
对于系列:
>>> ser = pd.Series([b"cow", b"123", b"()"]) >>> ser.str.decode("ascii") 0 cow 1 123 2 () dtype: object