a=[['app','ap','ade'],['er'],['bcc','brt']]
将这么一个list 转换成 a2=['app','ap','ade','er','bcc','brt']
做法:a2=[x for tup in a for x in tup]