说我列表中有几个数字:
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这样的新窗口中。