mencetak teks berwarna dan tebal dalam python

from termcolor import colored
 print(colored('Hello', 'green', attrs=['bold']))
Muhammed Abdulganiyy Ishola