|
From: John H. <jdh...@ac...> - 2005-05-04 17:03:03
|
>>>>> "Michael" == Michael J Rehberg <mic...@fi...> writes:
Michael> x_value = [thisrow[0] for thisrow in sql_result_set]
Michael> y_value = [thisrow[1] for thisrow in sql_result_set]
You can do this in one pass with
x_value, y_value = zip(*sql_result_set)
JDH
|