2

我发现有用的包很丰富。并想在下一个方式中使用它:用不同颜色的句子和不同的背景颜色绘制单词。我使用下一个代码:

from rich.console import Console
console = Console()
console.print('[green]some[/green] [#F47983]text[/#F47983]')

这样我可以为任何单词设置任何颜色:

在此处输入图像描述

但我不知道,如何设置不同的背景颜色。我试过了background=bg:而且backgrounp-color- 这不起作用:(

4

1 回答 1

2

使用“on”这个词来介绍背景颜色。例如:

print(“[bold green on blue]Fear is the mind-killer[/]”)

此外,如果您想使用十六进制代码:

print('[green on #F47983]some[/] [#F47983]text[/]')

有关如何定义样式的信息,请参阅https://rich.readthedocs.io/en/latest/style.html 。

于 2020-07-16T22:02:45.557 回答