Но я все поменял! Прошу прокомментировать!
# Вот он)) def cprint(text, color='def'): str = '' fc = '\033[' colors = {'def': '0m', 'red': '91m', 'under': '04m', 'green': '32m', 'blue': '94m', 'cyan': '96m', 'yellow': '93m', 'magenta': '95m', 'grey': '90m' } if color not in colors: # Покороче print(str + fc + colors['def'] + text) else: if color == 'under': print(str + fc + colors['under'] + text) else: print(str + fc + colors[color] + text) def help(): print('Цвета:' '\033[91m - red -\n' '\033[94m - blue -\n' '\033[96m - cyan -\n' '\033[93m - yellow \n' '\033[95m - magenta -\n' '\033[32m - green -\n\033[0m' ' - \033[04munder\033[0m -\n' '\033[90m - grey -\n')