将列表的元组转换为列表

Convert tuple of list to list

下面是我正在使用的元组:

tupleA = ([{'std_name':'A','std_addr':'Peachtree Drive'},{'std_name':'B','std_addr':'Alameda Drive'}],)

我希望它能转换成单个字典列表,看起来像这样 -

myList = [{'std_name':'A','std_addr':'Peachtree Drive'},{'std_name':'B','std_addr':'Alameda Drive'}]

转换此元组的最佳方法是什么?

这里看起来你想要元组中的元素,所以如果你这样做:

myList = tupleA[0]

您将在元组中获得列表