PythonAnsiColors

class ansicolors:
	PINK = '3[95m'
	BLUE = '3[94m'
	GREEN = '3[92m'
	YELLOW = '3[93m'
	RED = '3[91m'
	ENDC = '3[0m'

	@staticmethod
	def p(color, message):
		print(color + message + ansicolors.ENDC)

# ansicolors.p(ansicolors.PINK, "I will not buy this record, it is scratched")