Learn something, with a selection of subjects to choose from.
(self, arg)
| 1517 | self.stdout.write(result + "\n") |
| 1518 | |
| 1519 | def do_study(self, arg) -> None: |
| 1520 | """Learn something, with a selection of subjects to choose from.""" |
| 1521 | # Pass in a list of strings for selections |
| 1522 | subject = self.select(["math", "science"], "Subject? ") |
| 1523 | result = f"Good luck learning {subject}!\n" |
| 1524 | self.stdout.write(result) |
| 1525 | |
| 1526 | def do_procrastinate(self, arg) -> None: |
| 1527 | """Waste time in your manner of choice.""" |