标签:-- int amp oop pre class string bsp strong
Python Split()函数
Python split() 通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则分隔 num+1 个子字符串
split() 方法语法:
str.split(str="", num=string.count(str)).
返回分割后的字符串列表。
str = "this is string example....wow!!!" print (str.split( )) # 以空格为分隔符 print (str.split(‘i‘,1)) # 以 i 为分隔符 print (str.split(‘w‘)) # 以 w 为分隔符
心得:str.split() 可以用来分割取值,JSON格式; 同时也可以用来格式化一些数据
比如:
{ xxxx:color xxxx:size } #如果想要分开loop出color size这个两个属性,必须要split这个json,然后再来loop
【Rollo的Python之路】Python Split()函数 的用法
标签:-- int amp oop pre class string bsp strong
原文地址:https://www.cnblogs.com/rollost/p/11370439.html