See point 22 of this exercise. In particular pay attention to where it says “iterate through thread_sold_split
and print a sentence that says how many threads of each color were sold today.”
But I am very certain that is wrong. That’s not what you have to do at all. You don’t iterate through thread_sold_split: you iterate through the list colours like so:
for index in range(len(colours)):
print("There were {count} {colours} threads sold today".format(count=colour_count(colours[index]), colours=colours[index]))
I hope this is a genuine mistake I have found. All the best, and thank you to whoever wrote this course so far I find it really helpful.
Edit: hopefully I posted this in the right place now.