The Linux tail command prints the last maximum n lines of a file. When writing a function that performs this function, choose the correct statements that can go in the ?????.
lines[-n]
lines[-n:]
lines[len(lines)-n:]
lines[-1:-n-1:-1]
lines.pop(n)
