Answer:
Try this code in repl, it works there. Sorry my power went out and I couldn't post the answeer earlier.
Step-by-step explanation:
print("\033[0;37;40m Normal text\n")
print("\033[2;37;40m Underlined text\033[0;37;40m \n")
print("\033[1;37;40m Bright Colour\033[0;37;40m \n")
print("\033[3;37;40m Negative Colour\033[0;37;40m \n")
import colorama
from colorama import Fore
number = input("Type in a number 1 through 100: \n")
number = int(number)
if number < 5:
print (Fore.RED)
print (" X ")
if number > 4:
if number < 8:
print (Fore.YELLOW)
print (" --- ")
if number > 7:
print (Fore.GREEN)
print (" / ")
print (" \/ ")