Python how to print coloured text to Console window code example
Example 1: python colored text in console
print(f"{bcolors.WARNING}Warning: No active frommets remain. Continue?{bcolors.ENDC}")
Example 2: print colored text to console python
colored = lambda r, g, b, txt : f"\033[38;2;{r};{g};{b}m{txt}\033[m"