mirror of
https://github.com/Textualize/rich.git
synced 2025-07-09 21:55:01 +00:00
4 lines
131 B
Python
4 lines
131 B
Python
from rich import print
|
|
from rich.padding import Padding
|
|
test = Padding("Hello", (2, 4), style="on blue", expand=False)
|
|
print(test)
|