I want to print enter name with raw_input color Below is the code it will first print enter name with color and then in next line i am reading input.
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
print bcolors.WARNING + "Enter name:" + bcolors.ENDC
storage_select = raw_input()
But i want below thing with color
a = raw_input("Enter name")