Answer:
Try this code in repl, it works there. Sorry my power went out and I couldn't post the answeer earlier.
Explanation:
print("\033[0;37;40m Normal text\\")
print("\033[2;37;40m Underlined text\033[0;37;40m \\")
print("\033[1;37;40m Bright Colour\033[0;37;40m \\")
print("\033[3;37;40m Negative Colour\033[0;37;40m \\")
import colorama
from colorama import Fore
number = input("Type in a number 1 through 100: \\")
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 (" \/ ")