File Manager V1.5

[SYSTEM@ROOT]: /usr/share/doc/python3-rich/examples/
INJECT_FILE:
NEW_ENTRY:

FILE_CONTENT: group2.py

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()))
[ KEMBALI ]