Python split+strip 格式化字符串

Posted 少年锦时

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python split+strip 格式化字符串相关的知识,希望对你有一定的参考价值。

注意:  

1. split处理对象是字符串

2. split返回的是一个列表

3. strip处理对象是字符串

 

s = \'{"period":"20201030","language":"zh_CN",\\
"beginTime":"2020-10-01","endTime":"2020-10-30"}\'

# split()方法以参数字符串为分割符 ,将字符串切割为多个字符串,作为元素存入一个列表,并返回这个列表。
s1 = s.split(",")

print(type(s1))  # split返回的是一个列表

for i in s1:
    if i.startswith("{"):
        print("{\\n" + i.lstrip(\'{\') + ",")
    elif i.endswith("}"):
        print(i.rstrip(\'}\') + "\\n}")
    else:
        print(i + ",")

结果如下 : 

<class \'list\'>
{
"period":"20201030",
"language":"zh_CN",
"beginTime":"2020-10-01",
"endTime":"2020-10-30"
}

 

以上是关于Python split+strip 格式化字符串的主要内容,如果未能解决你的问题,请参考以下文章

好好学python · 字符串(find(),index(),split(),join(),strip(),replace())

Python的strip() 函数和 split() 函数

Python的strip() 函数和 split() 函数

Python:strip(),split()

python-strip与split

python_split_strip_replace使用方法