TypeError: zip argument #1 must support iteration

I take it your code is giving you the error message, TypeError: zip argument #1 must support iteration. You are getting this error due to the expression zip(float(price), Bids). This simplified code demonstrates the error: The Python 2.x zip() built-in library function requires all its arguments to be iterables. float(price) is not an iterable. If … Read more