首页 > 编程 > Python > 正文

对python的bytes类型数据split分割切片方法

2020-02-15 23:55:13
字体:
来源:转载
供稿:网友

对str类型数据进行split操作如下:

>>> s = 'abc/ndef'>>> s.split('/n')['abc', 'def']

对bytes类型数据进行split操作如下:

>>> b = b'abc/ndef'>>> b.split(b'/n')[b'abc', b'def']

测试Python版本:3.6.5

以上这篇对python的bytes类型数据split分割切片方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林站长站。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表