how to print out multicolored text in python code example
Example 1: print colored text python
def colored(r, g, b, text):
return "\033[38;2;{};{};{}m{} \033[38;2;255;255;255m".format(r, g, b, text)
text = 'Hello, World'
colored_text = colored(255, 0, 0, text)
print(colored_text)
#or
print(colored(255, 0, 0, 'Hello, World'))
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"