Hi, I’m working on the below problem:
https://www.codecademy.com/courses/learn-python-3/projects/python-carlys-clippers
Why doesn’t my code result in the correct answer to number 9?
for last in last_week:
total_revenue += price*last
This the correct code:
for i in range (len(hairstyles)):
print(i)
total_revenue += prices[i] * last_week[i]