Easy way to make Colored Text in Python | Python Tips and Tricks

preview_player
Показать описание
How to make colorized text in Python. Python Tips and Tricks
#shorts #python #programming #coding

from termcolor import colored

print(colored('I am Blue', 'blue'))
print(colored('I am Red', 'red'))
print(colored('I am Green', 'green'))
print(colored('I am Yellow', 'yellow'))
Рекомендации по теме