D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
doc
/
python3-rich
/
examples
/
Filename :
group2.py
back
Copy
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()))