Python Language A text file fruits.txt contains names of fruits like this:
apple pineapple orange banana peach Write a utility program that prints a line from this file selected by the user. In a pythonic way, we start counting from zero, e.g., the word apple is on line 0, and the word orange is online
2. If the user inputs a line number that is too large, the program should print a message. It should also handle the case when the file fruits.txt does exist. E
xample [this program ran two times]: files_read_and_write-1.png HINTS: 0. You will need a counter variable to count lines and a variable to store the user input number.
1. You will need to read lines from the file using a loop and update the counter on every iteration.
2. When the counter equals the user number, print the line.
3. Do not worry about the try-except part before you are confident that everything else works.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme