更改背景颜色和文本颜色

时间:2018-07-18 01:34:11

标签: python python-3.x colors

说我列表中有几个数字:

listt = [2, 4, 6]

有什么方法可以改变背景色和每个数字的颜色,具体取决于它是哪个数字。例如:

for i in range(3):
    if listt[i] == 2:
        # make background color green and make number red
    elif listt[i] == 4:
        # make background color orange and make number green
    elif listt[i] == 6
        # make background color red and make number orange
    print(nlistt[i])

有没有办法做到这一点,如果不能同时使用背景色和常规色,则可以执行2种之一。另外,这应该在控制台中,而不是在像pygame这样的新窗口中。

1 个答案:

答案 0 :(得分:2)

只需将颜色代码应用于您要打印的内容,即可在帖子@Alex Taylor mentioned中找到颜色代码。

docker attach