count_orange = list(fruits.values())。count(5)print("苹果出现的次数:", count_apple)print("香蕉出现的次数:", count_banana)print("橙子出现的次数:", count_orange)输出:苹果出现的次数: 1 香蕉出现的次数: 1 橙子出现的次数: 1 需要注意的是,计数函数 count() 只能用于可迭代对象...