Answer to Question #259912 in Python for Maitha

Question #259912

Write a program that uses a two-dimensional list to store the highest and lowest temperatures for each month of the year. The program should output the average high, average low, and highest and lowest temperatures of the year. Your program must consist of the following methods:

 

a)    Method getData: This method reads and stores the data in the two-dimensional list.

 

b)    Method averageHigh: This method calculates and returns the average high temperature of the year.

 

c)     Method averageLow: This method calculates and returns the average low temperature of the year.

 

d)    Method indexHighTemp: This method returns the index of the highest temperature in the list.

 

e)    Method indexLowTemp: This method returns the index of the lowest temperature in the list.


1
Expert's answer
2021-11-01T18:45:38-0400
def get_data(n: int):
  return [[int(input()) for _ in range(n)] for _ in range()]

def avarage_high(high):
  sum = 0
  for i in high:
    sum = sum + i
  return sum / 12

def avarage_low(low):
  sum = 0
  for i in low:
    low = low + i
  return low / 12

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog