I am just getting started with Python. I have an error string that I want to stood out, currently it is just a basic text like the one you read right now.
   error = future.exception() is not None
        string = f'{getTimestamp()}: The "{future.tag}" task '
        string += f'failed: "{future.exception()}"\n' if error else 'was completed.\n'
How would it be the best way that string to be displayed in color red?
 
    