最佳答案
我有一本格式为的字典
dictionary = {0: {object}, 1:{object}, 2:{object}}
我如何通过这样的方式遍历这个字典
for ((key, value) in dictionary) {
//Do stuff where key would be 0 and value would be the object
}