我有一个看起来像这样的列表:
a = [('A', 'V', 'C'), ('A', 'D', 'D')]
我想创建另一个转换a为:
a
['AVC', 'ADD']
我将如何继续这样做?
python list
list ×1
python ×1