Showing posts with label Python. Show all posts
Showing posts with label Python. Show all posts

Tuesday, February 4, 2014

Python and edX

Last semester I have took "Introduction to Computer Science and Programming" at edX (https://www.edx.org/course/mitx/mitx-6-00-1x-introduction-computer-1498). A lot work but I have learned a lot about python.

Thursday, June 14, 2012

GeoPY and CSV file

Ok, yesterday evening and a bit today, I have updated my previous attempt to geocode a cvs table using GeoPy(http://code.google.com/p/geopy/). Here the code that I have wrote; it's not perfect but works. Next step will be adjust the output, and test it against a serious data-set.

Wednesday, March 17, 2010

Python Max Value

I did it! I have just found a nice way to extract the maximum field value from a bench of records previously selected. The trick is to build up a Python list L = [], where
I can append all the selected items L.append =(row.fieldname). Next I can run max(L)
to extract the maximum value.

.....