在python中将数组转换为对象

时间:2015-01-28 03:16:57

标签: python arrays json arraylist

我使用的API返回如下值:

print APIresultValue

它会像这样返回

(MyResult){
   Name = Mike
   LastName = Vin
   Middlle= Thu
 }

是否有可能将其转换为对象以确切地返回如下:

(ArrayOfMyResult){
MyResults[] = 
(MyResult){
   Name = Mike
   LastName = Vin
   Middlle= Thu
 }
}

在循环过程中,我不想通过item[0]获取价值,而是item['Name']

现在当我循环并获取它的值 for item in APIresultValue: print item[0] # to get the value of Name

我可以通过将其转换为对象来获取值吗?喜欢 for item in APIresultValue: print item['Name'] # to get the value of Name

有可能吗?

0 个答案:

没有答案