Answers for "bold yellow text python"

4

print bold python

print('\033[1m' + 'Text' + '\033[0m')
Posted by: Guest on November-19-2020
2

add colour to text in 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'))
Posted by: Guest on October-31-2020

Python Answers by Framework

Browse Popular Code Answers by Language