mirror of
https://github.com/Textualize/rich.git
synced 2025-07-07 12:54:59 +00:00
5 lines
132 B
Python
5 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)
|