For your particular example (pd.read_table
where the warnings are all regarding an incorrect number of columns in the data file) you can add warn_bad_lines=False
to the call:
pd.read_table(filename, header=0, error_bad_lines=False, warn_bad_lines=False)