[Solved] My Python code is looping at the wrong place
its easy to get confused when you have a big chunk of code like this … instead try and split your problem into smaller parts start with a function to get the details of only one student def get_student_detail(num_tests): # get the detail for just 1 student! student_name = input(“Enter Student Name:”) scores = [] … Read more