pandas.Series.str.encode #

系列.str。编码(编码,错误= '严格' ) [来源] #

使用指定的编码对系列/索引中的字符串进行编码。

相当于str.encode()

参数
编码字符串
错误str,可选
返回
对象系列/索引

例子

>>> ser = pd.Series(['cow', '123', '()'])
>>> ser.str.encode(encoding='ascii')
0     b'cow'
1     b'123'
2      b'()'
dtype: object