I've been looking on how to change your text in the command when you run python.
←[0;31;40Hello
What am I doing wrong?
class Colors: RED = "\x1b[0;31;40" def Starting(): print(Colors.RED + "Hello") time.sleep(100)This is my code that I thought would work to change my text red but it shows this.
←[0;31;40Hello
What am I doing wrong?