Here's some feedback to further improve your code:
You don't need to put an entire file path in your case when you read from your text file. You only need to put a relative path. If the code file you are running and the text file you are trying to read are in the same folder, then you only need to give it the name of the file. If its outside of the project folder, then yes, you need the entire path. The disadvantage of using the entire file path in your case is that it won't work for other users because they won't necessary save your project at the same file path as you have on your computer.
Try adding a ReadMe to your project! Its good practice to have descriptive ReadMe's for all of your projects for recruiters and other developers to look at and understand your project! Your ReadMe could be the deciding factor of whether or not someone checks out your program. Also, recruiters do look for good documentation for hires since that's a necessary skill for job-readiness!
Here's some feedback to further improve your code: