示例#1
0
def yellow(x: str) -> str:
    return colored(x, 'yellow')
示例#2
0
def title(x: str) -> str:
    return colored(x, 'blue', intense=True)
示例#3
0
def green(x: str) -> str:
    return colored(x, 'green')