The `astropy` table should be something like this ``` t = Table(names=('FILENAME','TKIN'),\ dtypes=('S40','f8')) for thisFile in filelist: t.add_row() t['FILENAME'][-1]=thisFile ... ```