Display last two rows from dataframe ‘DF’
1.print(DF[-2 : -1])
2.print(DF.iloc[-2 : -1])
3.print(DF.tail(2))
4.All the above
Answer:3
Posted Date:-2021-12-13 12:05:18