Multiple Choices
(Choose 1 answer)
The data below appears in 'data.txt', and Pandas has been imported. Which Python command will read it correctly into a Pandas DataFrame?
63.03 22.55 39.61
0.25 AB
40.48 98.67 -
39.06 10.06 25.02 29
4.56 AB
114.41
68.83 22.22 50.09 46.61 105.99 -
3.53 AB
A. pandas.read('data.txt')
B. pandas.read_csv('data.txt', header=None, sep=' ')
C. pandas.read_csv('data.txt', delim_whitespace=True)
D. pandas.read_csv('data.txt', header=0, delim_whitespace=True)