Print Bold Text in Python

PHOTO EMBED

Tue May 25 2021 16:14:23 GMT+0000 (Coordinated Universal Time)

Saved by @sambrosio13

class bold_color:
   PURPLE = '\033[95m'
   CYAN = '\033[96m'
   DARKCYAN = '\033[36m'
   BLUE = '\033[94m'
   GREEN = '\033[92m'
   YELLOW = '\033[93m'
   RED = '\033[91m'
   BOLD = '\033[1m'
   UNDERLINE = '\033[4m'
   END = '\033[0m'

print("The output is:" + color.BOLD + 'Python Programming !' + color.BLUE)
content_copyCOPY

https://www.delftstack.com/howto/python/python-bold-text/