(self)
| 9 | print(f"Ticket is booked in train no: {harry.trainNo} from {fro} to {to}") |
| 10 | |
| 11 | def getStatus(self): |
| 12 | print(f"Train no: {self.trainNo} is running on time") |
| 13 | |
| 14 | def getFare(self, fro, to): |
| 15 | print(f"Ticket fare in train no: {self.trainNo} from {fro} to {to} is {randint(222, 5555)}") |