I am using the colorama module and I want to be able to call the Fore on a variable corresponding to a color, for example 'GREEN'. I want to be able to do:
from colorama import Fore
color = 'GREEN'
print(Fore. + color)
I wanted it to just run print(Fore.GREEN), but I can't because its a syntax error. Is there any way to do that?