Write a function called price_range that accepts a list of floating-point numbers representing prices as an argument and returns the the difference between the highest price and the lowest price. Do not use the built-in functions max or min in your solution. Assume that all prices are positive values and that none of them exceed 10,000. 0.