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.
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
Comments
Leave a comment