Welcome to Westonci.ca, your ultimate destination for finding answers to a wide range of questions from experts. Discover a wealth of knowledge from experts across different disciplines on our comprehensive Q&A platform. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly platform.

Consider the following code, where temps is a list of floating point numbers.min_temp = Nonemin_index = Nonefor i in range(len(temps)):if __________________:min_temp = temps[i]_________________1. Fill in the first blank with a Boolean expression so that after the loop executes, the variable min_temp contains the minimum temperature. Do not use the built-in function min().2. Fill in the second blank with a statement completing the program so that after the loop executes, the variable min_index contains the index in the list corresponding to the minimum temperature.