Prints string in bold red. Parameters: string (str): String to print in bold red.
(string: str)
| 264 | |
| 265 | |
| 266 | def red(string: str) -> None: |
| 267 | """ |
| 268 | Prints string in bold red. |
| 269 | |
| 270 | Parameters: |
| 271 | string (str): String to print in bold red. |
| 272 | """ |
| 273 | print(f"\n\033[01;31m{string}\033[0m", flush=True) |
| 274 | |
| 275 | |
| 276 | def yellow(string: str) -> None: |