mirror of
https://github.com/Textualize/rich.git
synced 2026-02-06 10:58:48 +00:00
6 lines
132 B
Python
6 lines
132 B
Python
from rich import print
|
|
from rich.padding import Padding
|
|
|
|
test = Padding("Hello", (2, 4), style="on blue", expand=False)
|
|
print(test)
|