Print the Tail of a Text File

Introduction

Linux/Unix has a utility call "tail" that prints the last N lines in a text file. In this project you create your own version of "tail".

Note: See the "tail" documentation.

Project #1

Create your own (limited) version of the Linux/Unix "tail" utility.

Project #2

Modify Project #1. Let the user specify the start and end lines to print.

Project #3

Add a GUI to projects #1 and #2. See PySimpleGUI or PyQt.