OneCompiler

Write a Python program which will ask for 3 student names their scores. Then your program will find the top 3 students on their scores. It will print the student name & score with the highest score in dictionary. NOTE: all of the students will have unique names. NO NAMES SHOULD NOT BE REPEATED. sample input: devang 34 ryan 67 uma 23 sample output: {'ryan': 67} sample input: raj 12 ravi 55 samip 89 sample output: {"samip": 89}

558

Example heading with h2 size

Example heading with h3 size

Following is sample java code.

int i = 10;
if(i>0){
    System.out.println('positive');
}