[web2py] How to select a column of numbers into a list so that I can manipulate the list

2014-05-26 Thread Syd Stewart
Hi What is the simplest way please to select a column of figures (floats and int) into a list, so I can manipulate the list e.g randomise the order nums3 = db(db.Measures).select( db.Measures.measure_value, orderby=db.Measures.measure_date_time) meannums= sum(nums3)/float(len(nums3)) This

Re: [web2py] How to select a column of numbers into a list so that I can manipulate the list

2014-05-26 Thread Carlos Costa
Try: nums3 = db(db.Measures).select( db.Measures.measure_value, orderby=db.Measures.measure_date_time).as_list() 2014-05-26 7:20 GMT-03:00 Syd Stewart sydney.w.stew...@gmail.com: Hi What is the simplest way please to select a column of figures (floats and int) into a list, so I can