I made a program that spits out hello + some numbers, and it makes a really cool animation. I tried to make it so that when the random number reaches 20, it changes the color of the console output, but it didn't work. What's wrong?
import console
console.set_color()
a = 1
while 100:
print ("hello "+ str(a+a))
a +=a
if a == 20:
console.set_color(1.00, 0.00, 0.00)
Thank you!