我的json.data有2个键,我找不到删除元素的方法
def remove_task(self):
input =self.ids.label4.text
with open('data.json', 'r') as file_data:
data = json.load(file_data)
for element in data:
if input==element:
element.pop(input, None)
file.close()
with open('data.json', 'w') as file_data:
json.dump(data, file_data)
print(temp)