DAY 29: 100Days of Python
def newPrint(color, word):
if color=="red":
print("\033[31m", word, sep="", end="")
elif color=="green":
print("\033[32m", word, sep="", end="")
elif color=="blue":
print("\033[34m", word, sep="", end="")
else:
print("\033[0m"...
datapythonist.hashnode.dev1 min read