Hi I am using dummy csv file which is generated using data you posted in this question.
import pandas as pd
# read data 
df = pd.read_csv('test.csv')
File contents are as follows:
    header 1   header 2
0   AM         NaN
1   Depth      Value
2   10         20
3   30         122
4   60         222
One can use usecols parameter to access different columns in the data. If you are interested in just first column in this case it can be just 0 or 1. Using 0 or 1 you can access individual columns in the data.
You can save contents of this to x or whichever variable you want as follows:
# Change usecols to load various columns in the data 
x = pd.read_csv('test.csv',usecols=[0])
Header:
# number of line which you want to use as a header set it using header parameter
pd.read_csv('test.csv',header=2)
    Depth   Value
0   10      20
1   30      122
2   60      222