no = int(input("Enter number of students: ")) list2 = [] #list1 = [] for i in range(0,no): n = float(input("Enter % of student: ")) list2.append(n) print(list2) d = len(list2) def partition(list3,a,b): v = list3[a] i = a j = b-1 temp = 0 while(i v): j = j - 1 if(i