Alexander Cristian Resentera You don't need to import library every time you use the methods within its library. Just import it at the beginning and you are done. To execute iloc function, write this script just below the script you have shown above:
selected_datos1 = datos1.iloc[::7, :]
selected_datos2 = datos2.iloc[::7, :]
selected_datos3 = datos3.iloc[::7, :]
Execute these lines of codes and the extracted every 7th rows will be within the variables that you declared (in this case selected_datos1, selected_datos2, and selected_datos3).
This is a very handy library in python to work with large excel sheets, text files. So, I suggest you to go through this link to learn more about it: https://www.tutorialspoint.com/python_pandas/python_pandas_dataframe.htm