Question
Write a python program that will take an input file as an environmental variable, copy it to a list, and show every alternative lines in
Write a python program that will take an input file as an environmental variable, copy it to a list, and show every alternative lines in reverse order from the list (i.e. the last line will show first, then the two lines before the last line...and so on.)
You are not allowed to use any loop (such as for, while, etc) for solving this part. You have to use list slicing. You also cannot use any input function. You will have to take files as environmental variable.
Sample Input:
INPUT=inputfile.txt showfileinreverse
Sample Output:
['line8', 'line6', 'line4', 'line2']
Your input file inputfile.txt has the following content:
line1
line2
line3
line4
line5
line6
line7
line8
Step by Step Solution
There are 3 Steps involved in it
Step: 1
import os import sys def readfilereversealternatefilepath with openfilepath r as fi...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get StartedRecommended Textbook for
Income Tax Fundamentals 2013
Authors: Gerald E. Whittenburg, Martha Altus Buller, Steven L Gill
31st Edition
1111972516, 978-1285586618, 1285586611, 978-1285613109, 978-1111972516
Students also viewed these Programming questions
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
View Answer in SolutionInn App