Files
server/usr/share/doc/python3-rich/examples/group2.py
2026-01-07 20:52:11 +01:00

13 lines
224 B
Python

from rich import print
from rich.console import group
from rich.panel import Panel
@group()
def get_panels():
yield Panel("Hello", style="on blue")
yield Panel("World", style="on red")
print(Panel(get_panels()))