# python -m pip install CrafterColor
try:
from CrafterColor.Print import printColors
from CrafterColor.Print import print
except ModuleNotFoundError:
import os
os.system("python -m pip install CrafterColor")
print("rerun the program")
exit(-1)
# the a available keywards Colors
for LOF in printColors:
print("Hello, World",LOF,sep=": ",color=LOF)