Looking for reliable answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Discover solutions to your questions from experienced professionals across multiple fields 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.