def c(msg, colour): try: from termcolor import colored, cprint p = lambda x: cprint(x, '%s' % colour) return p(msg) except: print(msg)