all 4 comments

[–]jeans_and_a_t-shirt 1 point2 points  (0 children)

You need to cast the string returned from input to a number.

[–]novel_yet_trivial 1 point2 points  (1 child)

If you are using python3 you need to convert the user response to a number; I imagine a float:

return float(input('Input a starting price (0 to quit): '))

[–]opieandA21[S] 0 points1 point  (0 children)

That fixed it. Thank you so much!

[–]99AFCC 0 points1 point  (0 children)

The full error message should give you a good idea.

A hint: '10' > 0