當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。