def print_colorful_msg(msg, color='white'): colors = { 'red': '\033[91m', 'green': '\033[92m', 'yellow': '\033[93m', 'blue': '\033[94m', 'magenta': '\033[95m', 'cyan': '\033[96m', 'white': '\033[97m', 'bold': '\033[1m', 'underline': '\033[4m', 'end': '\033[0m' } print(f"{colors[color]}{msg}{colors['end']}")