In order to change all the elements of variable ‘grades’ to…
In order to change all the elements of variable ‘grades’ to the integer 10, we run the following code: grades=[23, 45, 76,88, 90, 12, 10]for i in range (len(grades)): grades[i]=__________________ Fill in the blank with the appropriate number to get the answer, as per the problem requirements.
Read Details