Question: use for loop only (!!!no while loop) start with below code Make a Python program. A user enters a number of students first, and then

Make a Python program. A user enters a number of students first, and then enters student's and test score with space separator. Print the students name with final letter grade for A =>90 >=80> C > 70 >D >= 60 > F. You must use three list variables as students_name, students_score, students_grade Begin your code with the codes given on the next page. Enter number of students: 4 Enter name and score with space: John 99 Example) Enter number of students: 3 Name and score: John 88 Name and score: Sam 95 Name and score: Carl 55 Enter name and score with space! Jane 18 Enter name and score with space: 77 Enter name and score with spacer Ken 44 Grades: John: B Sam: A Carl: F Students grades John Jane B Din Ken N_students = int( input('Enter number of students: ')) students_name = [] students score = [] students_grade = [] for nin range(N_students): temp_data = input("Enter name and score with space: ") temp_data2 = temp_data.split() students_name.append(temp_data2[0])
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
