Question: Needing help writing this program for an assignment. having trouble making the list. Note: must be written without using format. Introduction The purpose of this

Needing help writing this program for an assignment. having trouble making the list.

Note: must be written without using format.

Needing help writing this program for an assignment. having trouble making the

list. Note: must be written without using format. Introduction The purpose of

this assignment is to familiarize you with the writing Python scripts that

make use of using files. Heads or Tails Write a program that

Introduction The purpose of this assignment is to familiarize you with the writing Python scripts that make use of using files. Heads or Tails Write a program that will prompt the user to enter a file name and the number of lines to extract from that file name. When the number of lines is positive, the program will display the lines from the beginning of the file. When the number of lines is negative, the program will display the lines from the end of the file. If the number of lines exceeds the total number of lines in the file, then only the line count should be displayed. Program Input The program should prompt the user in this order (bold type is what the user entered): Enter the file name: lines10.txt Enter a positive or a negative integer: 4 Program Calculation The program will calculate where to start displaying the number of lines. If the user enters a number that exceeds the actual number of lines of the file, the program should display the number of lines in the file. Program Output Shown below is the expected output produced by the program: Welcome to heads or tails file operations This program accepts a file name and the number of lines. A positive number of lines displays from the beginning of the file. A negative number of lines displays from the end of the file. Enter the file name: lines10.txt Enter a positive or a negative integer: 4 Below is the last 4 lines for the file: lines10.txt Line 7 Line 8 Line 9 Line 10 >> Welcome to heads or tails file operations This program accepts a file name and the number of lines. A positive number of lines displays from the beginning of the file. A negative number of lines displays from the end of the file. Enter the file name: lines10.txt Enter a positive or a negative integer: 3 Below is the first 3 lines for the file: lines10.txt Line 1 Line 2 ppy 3 Your output should look like the output above and everything should align correctly You are required to use functions for this assignment. Programming Hints - It may be helpful to count the number of lines in the file first. - The program may need to import os.path and linecache - A check of the length of the file name should be done and the program should continue to prompt until the file name is greater than 3 characters. Example: while len(name)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!