本文整理汇总了Python中color.Color.message方法的典型用法代码示例。如果您正苦于以下问题:Python Color.message方法的具体用法?Python Color.message怎么用?Python Color.message使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类color.Color
的用法示例。
在下文中一共展示了Color.message方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: checkbox
# 需要导入模块: from color import Color [as 别名]
# 或者: from color.Color import message [as 别名]
def checkbox(self, value, checkmark='*'):
if not value:
return ' '
if self.color:
return Color.message(checkmark, Color.TEAL)
else:
return checkmark
示例2: out
# 需要导入模块: from color import Color [as 别名]
# 或者: from color.Color import message [as 别名]
def out(self, msg, color=None, pad=0):
if pad > 1:
msg = self.pad(msg, pad)
if self.color and color is not None:
msg = Color.message(msg, color)
return msg
示例3: state
# 需要导入模块: from color import Color [as 别名]
# 或者: from color.Color import message [as 别名]
def state(self, values, pad=0):
arr = [" "] * 8
for s in values:
arr[STATE_CHARS.index(s)] = s
msg = ''.join(arr)
if self.color:
"""Use the first states color for all"""
msg = Color.message(msg, STATE_COLORS[values[0]])
return self.out(msg, pad=0)