我需要这种形式的数据结构:
test_id1: resultValue, timeChecked
test_id2: resultValue, timeChecked
test_id3: resultValue, timeChecked
test_id4: resultValue, timeChecked
...
到目前为止,我只使用带有 id 和结果的键值的字典来处理它。但我想添加我检查的时间。最好的方法是什么?我可以将值设为元组吗?或者在这种情况下一个新的类更适合?我的班级需要是什么样子才能适应上述情况?