(msg: str="Press ENTER to continue...")
| 103 | os.system("clear" if os.name != "nt" else "cls") |
| 104 | |
| 105 | def pause(msg: str="Press ENTER to continue...") -> None: |
| 106 | try: |
| 107 | input(msg) |
| 108 | except KeyboardInterrupt: |
| 109 | print() |
| 110 | |
| 111 | def norm(s: str) -> str: |
| 112 | return " ".join(s.strip().lower().split()) |
no test coverage detected