python|python 多个列表 list合并成一个大列表

python 多个列表 list合并成一个大列表
假如数据为:

raw=['[1,2]','[3,4]','[4,5]']

合并结果为一个大列表
res_li=[1,2,3,4,5]

解决办法:
笨方法:
temp_li = [] for res in raw: temp_li.extend(eval(res))

列表推导式
res=[x for j in raw for x in eval(j)]import json res=[x for j in raw for x in json.loads(j)]

生成器
res=(x for j in raw for x in eval(j))import json res=(x for j in raw for x in json.loads(j))

【python|python 多个列表 list合并成一个大列表】使用itertools
import itertools list(itertools.chain(*map(eval, raw)))

    推荐阅读