当前位置: 首页>>代码示例>>Python>>正文


Python color.yellow方法代码示例

本文整理汇总了Python中color.yellow方法的典型用法代码示例。如果您正苦于以下问题:Python color.yellow方法的具体用法?Python color.yellow怎么用?Python color.yellow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在color的用法示例。


在下文中一共展示了color.yellow方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_combination

# 需要导入模块: import color [as 别名]
# 或者: from color import yellow [as 别名]
def test_combination():
    print()
    tpl = color.green('the quick {} jump over the {} dog')
    f = tpl.format(
        color.yellow('brown fox'),
        color.red_bg('lazy'),
    )
    print(repr(f))
    print(f)

    tpl = color.green_bg('the quick {} jump over the {} dog')
    f = tpl.format(
        color.yellow('brown fox'),
        color.red_bg('lazy'),
    )
    print(repr(f))
    print(f) 
开发者ID:reorx,项目名称:python-terminal-color,代码行数:19,代码来源:combination_test.py

示例2: warning

# 需要导入模块: import color [as 别名]
# 或者: from color import yellow [as 别名]
def warning(word):
        Log._print("[!] %s\n" % color.yellow(word)) 
开发者ID:WangYihang,项目名称:Exploit-Framework,代码行数:4,代码来源:Log.py

示例3: print_context

# 需要导入模块: import color [as 别名]
# 或者: from color import yellow [as 别名]
def print_context(self):
        self.context.update_regs()
        pykd.dprintln(color.yellow("[------ Register --------------------------------------------------------------------------------------------]"), dml=True)
        self.print_regs()
        pykd.dprintln(color.yellow("[------ Code ------------------------------------------------------------------------------------------------]"), dml=True)
        self.print_code()
        pykd.dprintln(color.yellow("[------ Stack -----------------------------------------------------------------------------------------------]"), dml=True)
        self.print_stack()
        pykd.dprintln(color.yellow("[------------------------------------------------------------------------------------------------------------]"), dml=True) 
开发者ID:bruce30262,项目名称:TWindbg,代码行数:11,代码来源:context.py

示例4: TWindbg

# 需要导入模块: import color [as 别名]
# 或者: from color import yellow [as 别名]
def TWindbg(args):
    """TWindbg: List all the command in TWindbg """
    if len(args) != 0:
        raise CmdExecError("Invalid argument number")
    banner = color.yellow("TWindbg: PEDA-like debugger UI for WinDbg\n")
    banner += color.gray("For latest update, check the project page: ")
    banner += color.white("https://github.com/bruce30262/TWindbg\n")
    banner += color.orange("Use \"[cmd] help\" for further command usage\n")
    pykd.dprintln(banner, dml=True)
    print_all_usage() 
开发者ID:bruce30262,项目名称:TWindbg,代码行数:12,代码来源:command.py


注:本文中的color.yellow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。