Answered step by step
Verified Expert Solution
Question
1 Approved Answer
solve in python Complete the following program. A Temp.txt file contains unknown number of records where each record contains name of the city and temperature
solve in python
Complete the following program. A Temp.txt file contains unknown number of records where each record contains name of the city and temperature as shown below. Use two lists city [ ] and temp[ ] to store the data. Program should display the following: - Display all the names of cities and temperatures whose temperatures are in the range of 15 and 25 . - Number of cities in the array. - Number of cities whose temperature is in the range of 15 and 25. Note: You should complete all the empty lines Sample Output: Cities with temperature between 15 and 25 degrees: Huscat 20 Seeb: 18 Alkhoudh 28 Total number of cities: 5 The number of cities in the range 15 and 25: 3 Step by Step Solution
There are 3 Steps involved in it
Step: 1
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 Started