Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have scored marks above 75.
Create a dictionary with the roll number, name and marks of n students in a class and display the names of students who have scored marks above 75. Program no_of_std = int(input(“Enter number of students: “)) result = {} for i in range(no_of_std): print(“Enter Details of student No.”, i+1) roll_no = int(input(“Roll No: “))…