Examples
import numpy as np
import pandas as pd
df = pd.DataFrame({'animal':['dog', 'bee', 'cat', 'lion',
'monkey', 'tiger', 'fox', 'wolf', 'zebra']})
df
Viewing the last 5 lines
df.tail()
Viewing the last n lines (three in this case)
df.tail(3)