在python中从表中提取数据作为字典



我正在编写一个python脚本,其中我必须执行不同的命令并以字符串格式存储其输出。从命令列表中,一个命令的输出以表格形式显示,如下所述。需要指导以字典的形式提取相同的输出。如有任何线索,我们将不胜感激。

示例输出应该如下:

{Shelf id: 1, MEMBER Type: prime, TID: Sub_6500_3}

命令输出:

~ tidci TID_table rtrv_shelf
-----+-----------------+---------+------+-------+--------+------+------+-------
Shelf|      IP         | MEMBER  |Prime |Members| Dup P  |Dup P | TIDc | TID
Id  |   Address       |  Type   |ShId  | Added | found  |Count |      |
-----+-----------------+---------+------+-------+--------+------+------+-------
1 |  d.d.d.d        |   Prime |   1  |    1  |  FALSE |   0  |   a | xxxxx
-----+-----------------+---------+------+-------+--------+------+------+-------

您可以这样检索数据。

for row in table_name:
details= {"Shelf_id":row[0], "MEMBER_type":row[2], "TID":row[3]}
return details

相关内容

  • 没有找到相关文章