I could not find such an option in the documentation. A measuring device spits out everything in Excel:
<>
Another option would be:
f = open(fname, 'r') line1 = f.readline() data1 = pd.read_csv(f, sep='\s+', names=line1.replace(' #', '').split(), dtype=np.float)
You might have a different separator though.