#python python... PYTHON πŸ”› πŸš€
11 subscribers
919 photos
7 videos
158 files
1.54K links
Download Telegram
from colorama import Fore, Back, Style

print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Back.BLUE + 'and with a green background')
print(Back.MAGENTA + 'and with a green background')
print(Style.DIM + 'and in dim text')
print(Style.RESET_ALL)
print('back to normal now')

#python #colors #colorama