I am very new to python.my code is below -
reading_range = "0:54, 2:34" #this is my variable
data.iloc[reading_range] #this line is giving error ,because the value is coming as '0:54, 2:34'
but I want something like
data.iloc[0:54, 2:34]
Thanks in advance