def count_int(nums): count = {1: 0, 5: 0, 10: 0} for num in nums: if num == 1 or num == 5 or num == 10: count[num] = count[num] + 1 return count
集结号就你和临河里