# Install ```bash apt install python3-rich ``` or ```bash python -m pip install rich ``` # Example 1 ```py from rich.table import Table from rich.console import Console console = Console() table = Table(title="Hello World") table.add_column("Mr",justify="right",style="cyan",no_wrap = True) table.add_column("Flibble",justify="center",style="blue") table.add_column("Hex",justify="left",style="red") table.add_column("Vision",justify="left",style="#ff7700") a = "In the beginning was the word and the word was with God and the word was God." a = a.split(" ") table.add_row(*a[:4]) table.add_row(*a[4:8]) table.add_row(*a[8:12]) table.add_row(*a[12:16]) console.print(table) ```