write a python program for this question. You will be given a dictionary, where the name of a student will be the key and a list of courses will be the value. Now, you have to take a course name as input until the user gives 'STOP' in the input. Your task is to display the list of the students taken that course after each input. Given Dictionary { 'Mike' : ['CSE110','ENG101','MAT110'], 'Simon' : ['CSE111','PHY111','MAT110', 'CSE230'], 'Shawn' : ['CSE110','ENG101','MAT120','CSE230'], 'Alice' : ['CSE110','ENG091','MAT092'] } ================================================ Sample Input 1 CSE110 MAT110 CSE260 STOP Sample Output 1 [ 'Mike', 'Shawn', 'Alice' ] [ 'Mike', 'Simon'] [ ] Explanation 1: Mike, Shawn and Alice are doing CSE110 Mike and Simon are doing MAT110 No student is doing CSE260
write a python program for this question.
You will be given a dictionary, where the name of a student will be the key
and a list of courses will be the value.
Now, you have to take a course name as input until the user gives 'STOP' in
the input. Your task is to display the list of the students taken that
course after each input.
Given Dictionary
{ 'Mike' : ['CSE110','ENG101','MAT110'],
'Simon' : ['CSE111','PHY111','MAT110', 'CSE230'],
'Shawn' : ['CSE110','ENG101','MAT120','CSE230'],
'Alice' : ['CSE110','ENG091','MAT092'] }
================================================
Sample Input 1
CSE110
MAT110
CSE260
STOP
Sample Output 1
[ 'Mike', 'Shawn', 'Alice' ]
[ 'Mike', 'Simon']
[ ]
Explanation 1:
Mike, Shawn and Alice are doing CSE110
Mike and Simon are doing MAT110
No student is doing CSE260

Step by step
Solved in 2 steps with 3 images









