Hi,
I'm new to python and I am having issues attempting to input data into my code from a text file. The text looks like this:
>INFO> CELLID, #729,
>INFO> 20100520-035248 LightningTable (scale_1)
>INFO> LON,LAT -96.485,34.67,0
datatime, maxref, ref_-10, MaxVIL, TotalVIL, Size(km2), CGDenAVG, CGmaxden, CGCount, FlashCount, FlashDenAVG, MESH
20:03:30:05, 63.5, 59.5, 44.0613, 18091.8, 311.062, 0, 0, 0, 40.5807, 0.0332085, 27.41,
20:03:32:06, 63.5, 60.5, 48.3901, 17427.8, 270.588, 0, 0, 0, 76.9209, 0.0723621, 38.0266,
There are several "cells", and I need to pull out the FlashCount column from each cell.
Thanks.