import pandas as pd 

file=pd.read_csv('Nowcoder.csv',dtype=object)
print(file.loc[10:20]['Language'])



# loc左闭右闭

# iloc左闭右开