1 00:00:01,200 --> 00:00:03,660 Elevator simulation problem. 2 00:00:03,660 --> 00:00:08,770 You need to write a python program that simulates an elevator in a building. 3 00:00:08,790 --> 00:00:11,190 And here are the specifications. 4 00:00:11,460 --> 00:00:19,380 Please go through all these specifications carefully and I suggest you to use object oriented program 5 00:00:19,620 --> 00:00:27,750 to answer the questions and the first question is you need to calculate the time when the last person 6 00:00:27,750 --> 00:00:32,190 to enter the elevator arrives at the destination floor. 7 00:00:32,220 --> 00:00:38,090 Next question you need to calculate the number of trips made by the elevator. 8 00:00:38,990 --> 00:00:45,230 Next the table below here gives us the details such as the passenger number. 9 00:00:45,990 --> 00:00:54,250 The time of arrival and the destination floor of the passenger so when your python program you can define 10 00:00:54,370 --> 00:01:00,160 two classes one is the passenger class in the passenger class. 11 00:01:00,200 --> 00:01:12,180 You can define the attribute such as the passenger number and the arrival time of the passenger and 12 00:01:12,360 --> 00:01:13,510 the destination. 13 00:01:13,560 --> 00:01:26,500 Float and you also need to define another class for the elevator and this can be defined as a child 14 00:01:26,560 --> 00:01:27,760 of the passenger. 15 00:01:27,760 --> 00:01:38,780 Class in order to inherit the required attributes I'm not going to give the solution for this program. 16 00:01:38,780 --> 00:01:41,030 Please try this on your own. 17 00:01:41,240 --> 00:01:41,990 Good luck.