BACKGROUND: It is 1942. You are a teenage Jew who has lived…

Questions

Write а Rооm clаss which keeps trаck оf the number of students in a classroom. Write a constructor that receives the maximum number of students allowed in the room as an integer and stores it as a data member. Create another data member to track the current number of students in the class. It should start as 0. Write a method called add_student() which receives one additional parameter, the number of students to add to the class. It adds that number to the current student count. If that number is greater than the maximum number of students allowed in the classroom, set the current number to the maximum number of students. Write a method called utilization() which receives no additional parameters and returns a string using the following criteria: "bad” if the classroom is less than 25% full; "ok" if the classroom is between 25% and 75% inclusive; "awesome" if the classroom is more than 75% full. HINT: percent is: current_student_count/max_count Sample run of Room class imported to this file (main.py): import roomr = room.Room(32)r.add_student(5)print(r.utilization()) # badr.add_student(10)print(r.utilization()) # okr.add_student(10)print(r.utilization()) # awesome Copy your code room.py into the canvas textbox. Code in the python editor is NOT saved.