I am currently studying python, and I am struggling to find an answer to an assignment. I need to create a list from a user input, then find the highest temperature of the input and count how many times that temperature appears from the input. Finally I should output the highest temperature and how many times it appears.
input_temps = []
for i in range(int(input("Enter the tmeperature here: "))):
input_temps.append(int(input()))
print(input_temps)
this is what I have so far.
Edit: I am not allowed to use any max or count functions