You don't need the `csv` module unless you're actually parsing the file. If you just want to print it, that's not necessary. You can just do:
`print data`
after your `data = f.readlines()`
Also, there's no need to close the file with `f.close()` since you're using a context manager already (the `with` statement).
This kind of question will get much better answers on StackOverflow, since we can't create formatted code blocks here, and that's particularly important for Python code.
Try the attached code for reading your ascii file (I would recommend to use always a comment character, e.g. "#", at the beginning of header lines). Notice that the first column (date) was just transformed to float, not very useful in this fashion.