标签:拆分 span bsp div test pytho rgb code 字符串
python中拆分字符串
1、
>>> test1 = "abxcdxefxfh"
>>> test1
‘abxcdxefxfh‘
>>> test1.split(sep = "x")
[‘ab‘, ‘cd‘, ‘ef‘, ‘fh‘]
标签:拆分 span bsp div test pytho rgb code 字符串
原文地址:https://www.cnblogs.com/liujiaxin2018/p/14724862.html