當前位置: 首頁>>代碼示例>>Python>>正文


Python colorama.Back方法代碼示例

本文整理匯總了Python中colorama.Back方法的典型用法代碼示例。如果您正苦於以下問題:Python colorama.Back方法的具體用法?Python colorama.Back怎麽用?Python colorama.Back使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在colorama的用法示例。


在下文中一共展示了colorama.Back方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: on_color

# 需要導入模塊: import colorama [as 別名]
# 或者: from colorama import Back [as 別名]
def on_color(color, string):
    s = _convert_to_string(string)
    if term_is_colorable():
        colorama.init()
        color = _remap_color(color)
        color_code = getattr(colorama.Back, color.upper())
        return color_code + s + colorama.Back.RESET
    else:
        return s 
開發者ID:QData,項目名稱:deepWordBug,代碼行數:11,代碼來源:io.py

示例2: colorize

# 需要導入模塊: import colorama [as 別名]
# 或者: from colorama import Back [as 別名]
def colorize(text, fg=None, bg=None, attrs=None):
    if os.getenv("ANSI_COLORS_DISABLED") is None:
        style = "NORMAL"
        if attrs is not None and not isinstance(attrs, list):
            _attrs = []
            if isinstance(attrs, six.string_types):
                _attrs.append(attrs)
            else:
                _attrs = list(attrs)
            attrs = _attrs
        if attrs and "bold" in attrs:
            style = "BRIGHT"
            attrs.remove("bold")
        if fg is not None:
            fg = fg.upper()
            text = to_native_string("%s%s%s%s%s") % (
                to_native_string(getattr(colorama.Fore, fg)),
                to_native_string(getattr(colorama.Style, style)),
                to_native_string(text),
                to_native_string(colorama.Fore.RESET),
                to_native_string(colorama.Style.NORMAL),
            )

        if bg is not None:
            bg = bg.upper()
            text = to_native_string("%s%s%s%s") % (
                to_native_string(getattr(colorama.Back, bg)),
                to_native_string(text),
                to_native_string(colorama.Back.RESET),
                to_native_string(colorama.Style.NORMAL),
            )

        if attrs is not None:
            fmt_str = to_native_string("%s[%%dm%%s%s[9m") % (chr(27), chr(27))
            for attr in attrs:
                text = fmt_str % (ATTRIBUTES[attr], text)

        text += RESET
    else:
        text = ANSI_REMOVAL_RE.sub("", text)
    return text 
開發者ID:pypa,項目名稱:pipenv,代碼行數:43,代碼來源:termcolors.py

示例3: _back

# 需要導入模塊: import colorama [as 別名]
# 或者: from colorama import Back [as 別名]
def _back(self):
        if self.allow_terminal_colors:
            import colorama
            return colorama.Back
        else:
            return _ColoramaStub() 
開發者ID:inducer,項目名稱:loopy,代碼行數:8,代碼來源:options.py

示例4: color

# 需要導入模塊: import colorama [as 別名]
# 或者: from colorama import Back [as 別名]
def color(text, fore='', back='', res=True):
    prefix = fore + Style.BRIGHT if fore else ''
    prefix += getattr(Back, back.upper()) if back else ''
    suffix = Style.RESET_ALL if res else ''
    return prefix + text + suffix 
開發者ID:NoviceLive,項目名稱:bintut,代碼行數:7,代碼來源:init.py


注:本文中的colorama.Back方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。