Final answer:
The count_candy function in Python takes a list of candy names and computes a dictionary that maps each candy name to its respective count within the list.
Step-by-step explanation:
Python Function: count_candy
To define the function count_candy that counts the occurrences of each candy in a list and returns a dictionary with this information, you can follow these steps:
- Create a new empty dictionary called candy_count.
- Iterate over the list of candies.
- For each candy, increase its count in the candy_count dictionary or set it to 1 if it's not there yet.
- Return the candy_count dictionary.
Here is the code for the function:
def count_candy(candy_list):
candy_count = {}
for candy in candy_list:
if candy in candy_count:
candy_count[candy] += 1
else:
candy_count[candy] = 1
return candy_count
This function will effectively count and display the number of times each type of candy appears in the input list.