【问题标题】:Split elements of a list inside a list in python在python中的列表中拆分列表的元素
【发布时间】:2023-04-05 10:42:01
【问题描述】:

我是 Python 新手。如何从一个列表中的多个列表中创建一个列表?
例如,

list1 = ['aplle', 'grape', ['aplle1', 'grape1'] ]

输出应该是:

list1 = ['aplle', 'grape', 'aplle1', 'grape1']

列表有数千个元素。

【问题讨论】:

标签:
python
list
split