I could not read this dat file in python.
I tried the following :
url3 = 'https://www2.census.gov/programs-surveys/saipe/datasets/2002/2002-state-and-county/est02all.dat'
import pandas as pd
saipe02 = pd.read_csv(url3, sep='\s+', header=None, skiprows=1)
Or :
import numpy as np
saipe02 = np.fromfile(url3)
but they don't work. Only this code works but I couldn't put any delimiter to separate the data into column. I tried many delimiters, but it doesn't work:
saipe02=pd.read_table(url3,header=None)