()
| 20 | c3 = " " |
| 21 | |
| 22 | def main(): |
| 23 | |
| 24 | print("") |
| 25 | print(f"{a3} | {b3} | {c3}") |
| 26 | print(f"{a2} | {b2} | {c2}") |
| 27 | print(f"{a1} | {b1} | {c1}") |
| 28 | print("") |
| 29 | |
| 30 | hanoi() |
| 31 | |
| 32 | print("") |
| 33 | print("Choose a column (1, 2, or 3) to pull the top number, then choose a column to move that number to. Numbers must always be less than the number beneath them.") |