我从响应中得到以下数据。这似乎是一个命令。
例如,我可以访问“说明”。您能建议我应该阅读些什么,以允许我访问“ tcp_options”位吗?我假设这是一个嵌套的字典。
{
"description": "sftp",
"icmp_options": null,
"is_stateless": false,
"protocol": "6",
"source": "127.0.0.1/32",
"source_type": "CIDR_BLOCK",
"tcp_options": {
"destination_port_range": null,
"source_port_range": {
"max": 5500,
"min": 5500
}
},
"udp_options": null
},
要在python的嵌套字典中访问元素,就像这样:
thing = { "hi":{"hello":"bye"}}
您会写:
print(thing["hi"]["hello"])
这应该返回以下内容:
>>> print(thing["hi"]["hello"])
bye
>>> ...
希望这能回答您的问题!
通过其键值访问dict
应该很好:
dd = {
"description": "sftp",
"icmp_options": 'null',
"is_stateless": 'false',
"protocol": "6",
"source": "127.0.0.1/32",
"source_type": "CIDR_BLOCK",
"tcp_options": {
"destination_port_range": 'null',
"source_port_range": {
"max": 5500,
"min": 5500
}
},
"udp_options": 'null'
}
for key,value in dd.items():
print(key,value)
print(dd["tcp_options"])
输出:
description sftp
source_type CIDR_BLOCK
protocol 6
source 127.0.0.1/32
icmp_options null
tcp_options {'source_port_range': {'max': 5500, 'min': 5500}, 'destination_port_range': 'null'}
is_stateless false
udp_options null
{'source_port_range': {'max': 5500, 'min': 5500}, 'destination_port_range': 'null'}
全部,
首先感谢您的输入。但是事实证明我有点白痴。
'tcp_options"':
实际上里面有一个“,那是我遇到错误的原因。我认为“是某种形式的神秘python伏都教徒。
抱歉,谢谢大家。
edit:我的代码行:print(newRules ['tcp_options“'] ['destination_port_range'] ['min'])现在可以正常工作。