File size: 132 Bytes
065fee7 |
1 2 3 4 5 6 |
from rich import print
from rich.padding import Padding
test = Padding("Hello", (2, 4), style="on blue", expand=False)
print(test)
|
065fee7 |
1 2 3 4 5 6 |
from rich import print
from rich.padding import Padding
test = Padding("Hello", (2, 4), style="on blue", expand=False)
print(test)
|