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

Опубликовано: 02 Ноябрь 2024
на канале: Python 5
4,181
204

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'))