比如我定义了一个字典shop = {'apple': 5,'orange': 3}for kind in shop.keys(): print(kind)但是我这样写shop = {'apple': 5,'orange': 3}for kind in shop: print(kind)两者输出结果没有区别,那为什么还要加.keys()?它的意义是什么?