Menu

[Solved]Python 3 Tasked Finishing Program Read Write 5 Day Forecast Data Right Program Consists Me Q37026247

IN PYTHON 3

You have been tasked with finishing a program to read and write5-day forecast data. Right now the program consists of a menu withstub functions for each option. When a user selects ‘Read File’ theprogram should prompt the user for a filename and thenprint the contents of the file. If a user selects ‘Write File’ theprogram should prompt the user for a filename, prompt the user for5 days worth high temperatures, and then write that data to thetext file. Data should be written to the text file in the followingformat:

Design your program to match the sample execution below. For clarity, user input is clearly marked. The # input from user should not be part of the program:

SPACING AND PARAGRAPHING (n) SHOULD BE IDENTICAL TO THE EXAMPLEGIVEN.

Welcome to the Weather Monitor 1. Read File 2. Write File 3. Exit Choose: 2 # input from File: weather.aat # input from userWelcome to the Weather Monitor 1. Read File 2. Write File 3. Exit Choose: 2 # input from File: weather.aat # input from user Day 1: 85 # input from user Day 2: 38 # input from user Day 3: 93 # input from user Day 4: 48 # input from user Day 5: 20 # input from user user 1. Read File 2. Write File 3. Exit Choose : 1 # input from user File : weather.aat # input from user Day 1: 85 Day 2: 38 Day 3: 93 Day 4: 48 Day 5: 20 1. Read File 2. Write File 3. Exit Choose: 3 # input from user Show transcribed image text Welcome to the Weather Monitor 1. Read File 2. Write File 3. Exit Choose: 2 # input from File: weather.aat # input from user Day 1: 85 # input from user Day 2: 38 # input from user Day 3: 93 # input from user Day 4: 48 # input from user Day 5: 20 # input from user user 1. Read File 2. Write File 3. Exit Choose : 1 # input from user File : weather.aat # input from user Day 1: 85 Day 2: 38 Day 3: 93 Day 4: 48 Day 5: 20 1. Read File 2. Write File 3. Exit Choose: 3 # input from user

Expert Answer


Answer to IN PYTHON 3 You have been tasked with finishing a program to read and write 5-day forecast data. Right now the program c… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *