1. 程式人生 > >python 中幾種字串的處理

python 中幾種字串的處理

1、list轉string字串

     使用''.join(list)

例:

     listA=['我'.'是','Python','菜鳥']

    str = ''.join(listA)  

    我是Python菜鳥

2、string字串轉為list 

使用split()

str = 'http://www.csdn.net/bbs/index.php'

Alist=str.split('/')

['http:','','www.csdn.net','bbs','index.php']

3、dick轉string

使用json.dumps

import json
data1 = {'b': 789, 'c': 456, 'a': 123}
encode_json = json.dumps(data1)

4、string字串轉為dick

使用json.loads

import json

decode_json = json.loads(encode_json)