Question: # TODO: Fill in the while-loop condition so that 2 is added to i until i is equal 240. i = 2 while # ***

# TODO: Fill in the while-loop condition so that 2 is added to i until i is equal 240. i = 2 while # *** ANSWER HERE *** # : i += 2 # numbers_list contains 4 random numbers # TODO: write a for-loop to compute the sum of the # numbers in numbers_list. Do not use sum(). numbers_list = [1, 5, 16, 12] sum = 0 # Sum of elements in the list # *** ANSWER HERE *** # # The list healthy_foods contains the names of four healthy foods. healthy_foods = ['banana', 'apple', 'wheat', 'donut', 'grapes'] # The for loop below iterates over the healthy_foods list and prints a food item. # TODO: Fill in the if statement condition so that if food equals 'donut' a print statement prints the string 'not healthy!' for food in healthy_foods: print(food) if # *** ANSWER HERE *** # : # *** ANSWER HERE *** # 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!