# import necessary libraries
import pandas as pd
# set n to the desired nth number
n = 10
# read the file, and load every nth row using iloc
file_link = 'https://tinyurl.com/BostonHousingcsv'
df = pd.read_csv(file_link).iloc[: : n]
# print the result
print(df.head())