import numpy as np
filename = ‘digits_header.txt’
data = np.loadtxt(filename, delimiter=',', skiprows=1, usecols=[0, 2]) # for comma-delimited
print(data)
import numpy as np
file = 'digits_header.txt'
data = np.loadtxt(file, delimiter="\t", skiprows=1, usecols=[0,2]) # for tab-delimited
print(data[10]) # Print the 10th element of data_float