mirror of
https://github.com/Textualize/rich.git
synced 2025-07-08 05:05:03 +00:00
9 lines
206 B
Python
9 lines
206 B
Python
from rich import print
|
|
from rich.console import Group
|
|
from rich.panel import Panel
|
|
|
|
panel_group = Group(
|
|
Panel("Hello", style="on blue"),
|
|
Panel("World", style="on red"),
|
|
)
|
|
print(Panel(panel_group))
|