Skip to content

Instantly share code, notes, and snippets.

@sooop
sooop / colorprint.py
Last active February 5, 2025 10:30
print colored text in python
COLORS = dict(zip(range(1, 10), 'black red green yellow blue magenta'
' cyan white reset'.split()))
class BG:
black = '\033[40m'
red = '\033[41m'
green = '\033[42m'
yellow = '\033[43m'
blue = '\033[44m'