所以它是这样的,当我输入一个查询时,它被解析和两个值并拉出这是日期和指示器,并最初获得该日期的适当响应
response = {'l_result': [{'deaths': 5, 'tested': 5,}]}
if value('DATE'):
print("===================")
print("this is the response ")
print(response)
print("===================")
if value('indicator'):
mapped_indicator = values('indicator')[-1]
if mapped_indicator == 'Tested':
tested_list = [
{'total_tested': response.get('tested'),
'new_tests': response.get('new_tests')}]
print(tested_list)
我的问题是所有代码都运行。我希望,如果仅找到日期,则将显示响应中的所有信息,如果找到日期和指示器,则仅显示该指示器的特定信息。
我的输出是
===================
this is the response
{'l_result': [{'deaths': 5, 'tested': 5,}]}
===================
tested: 5
正如你所看到的,整个代码的结果就在那里,我想要的只是
tested: 5
你能告诉我该怎么做吗
慕斯709654
慕慕森
相关分类