276
How can I output colored text in python?
create a class for the colors you want
class colors: HEADER = '\033[95m'
To use code like this, you can do below
print(bcolors.HEADER + "Warning: Continue?")